-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "comp-promise",
"description": "A tiny Javascript library to help with promises in functional composition",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js ./",
"test": "jasmine --config=spec/support/jasmine.json",
"coverage": "nyc npm run -s test",
"report-coverage": "cat ./spec/coverage/lcov.info | coveralls",
"watch:lint": "watch 'npm run lint' ./",
"watch:test": "watch 'npm -s run test' ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmcglone/comp-promise.git"
},
"keywords": [
"composition",
"promise"
],
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jasmine": "^2.9.0",
"jasmine-spec-reporter": "^4.2.1",
"nyc": "^11.4.1",
"watch": "^1.0.2"
}
}