-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "profs",
"version": "1.1.1",
"description": "A promissory fs module with extra helpful goodness",
"main": "profs.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "rm test/data -rf && mocha --slow 0 ./test/test.js",
"testv6": "nvm exec 6 npm test",
"test-w-coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/test.js",
"dox": "dox -a < profs.js > doc/api.md && cat doc/README* > README.md && cat doc/api* >> README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matutter/profs.git"
},
"keywords": [
"promise",
"fs",
"profs"
],
"author": "matutter <mcutter.svc@gmail.com> (https://www.npmjs.com/profile/matutter)",
"license": "ISC",
"bugs": {
"url": "https://github.com/matutter/profs/issues"
},
"homepage": "https://github.com/matutter/profs#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"pug": "^2.0.0-beta6"
},
"dependencies": {
"bluebird": "^3.4.6"
}
}