-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "class-private-method-decorator",
"version": "2.1.2",
"description": "Private methods in a class using an ES decorator",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"watch:test": "npm test -- -w",
"build:clean": "rimraf lib dist",
"build:js": "babel -d lib/ src/",
"build": "npm run build:clean && npm run build:js",
"prepublish": "npm run build",
"test:cov": "babel-node ./node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha -- --recursive",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "git://github.com/elado/class-private-method-decorator.git"
},
"author": "Elad Ossadon <[email protected]> (http://github.com/elado)",
"license": "MIT",
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.13.1",
"isparta": "^4.0.0",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"watch": "^0.19.1"
},
"files": [
"lib"
]
}