-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.29 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.29 KB
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
{
"name": "chained-function",
"version": "0.5.0",
"description": "Chained function calls",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run lint && npm test && npm run build",
"build": "babel --out-dir ./lib ./src",
"test": "tap test/*.js --node-arg=--require --node-arg=babel-register --node-arg=--require --node-arg=babel-polyfill",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"coveralls": "tap test/*.js --coverage --coverage-report=text-lcov --nyc-arg=--require --nyc-arg=babel-register --nyc-arg=--require --nyc-arg=babel-polyfill | coveralls"
},
"author": "Cheton Wu <cheton@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cheton/chained-function.git"
},
"keywords": [
"chained",
"function"
],
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"coveralls": "^2.13.1",
"eslint": "^3.15.0",
"eslint-config-trendmicro": "^0.5.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.0",
"tap": "^10.1.1"
},
"nyc": {
"exclude": [
"test/index.js"
]
}
}