-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "namespacer-js",
"version": "0.2.1",
"description": "Generic file-based namespacing for nodejs",
"main": "namespacer.js",
"engines": {
"node": ">= 6.0"
},
"scripts": {
"build": "istanbul cover ./node_modules/mocha/bin/_mocha ./tests/*.test.js --report lcovonly -- -R spec",
"pretest": "jsdoc -c jsdoc.json",
"test": "npm run build",
"posttest": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Sieabah/namespacer-js.git"
},
"keywords": [
"namespace",
"php",
"composer",
"file"
],
"author": "Christopher S. Sidell",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sieabah/namespacer-js/issues"
},
"homepage": "https://github.com/Sieabah/namespacer-js#readme",
"devDependencies": {
"coveralls": "^2.11.15",
"expect.js": "^0.3.1",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {
"glob": "^7.1.1"
}
}