-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "noop-decorator",
"version": "0.0.4",
"description": "Decorator methods to noopify",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es"
],
"repository": "https://github.com/sugarshin/noop-decorator",
"author": "sugarshin",
"license": "MIT",
"bugs": {
"url": "https://github.com/sugarshin/noop-decorator/issues"
},
"homepage": "https://github.com/sugarshin/noop-decorator#readme",
"keywords": [
"decorator",
"noop"
],
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"scripts": {
"test": "BABEL_ENV=test ava -v",
"test:coverage": "nyc npm test",
"test:coverage:report": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src test.js",
"build:commonjs": "BABEL_ENV=commonjs babel -d lib src",
"build:es": "BABEL_ENV=es babel -d es src",
"build": "npm run build:commonjs && npm run build:es",
"prepublish": "npm run lint && npm test && npm run build"
},
"devDependencies": {
"ava": "^0.24.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.0",
"eslint": "^4.13.1",
"eslint-plugin-ava": "^4.4.0",
"eslint-plugin-babel": "^4.1.2",
"nyc": "^11.3.0"
}
}