-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
53
{
"name": "get-modules",
"version": "1.0.2",
"description": "get all filenames from `./modules`",
"license": "MIT",
"repository": "1-liners/get-modules",
"author": {
"name": "stoeffel",
"email": "[email protected]",
"url": "schtoeffel.ch"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"get-modules": "cli.js"
},
"scripts": {
"prepush": "npm test",
"develop": "nodangel --watch module --watch tests --exec 'npm --silent test'",
"istanbul": "istanbul cover ./node_modules/mocha/bin/_mocha -- --report lcov --compilers js:babel/register --ui qunit ./tests",
"mocha": "mocha --compilers js:babel/register --ui qunit ./tests",
"compile": "cd ./module; babel --loose=all ./*.js --out-dir ../",
"clean": "rm *.js",
"coverage": "npm run compile; npm run istanbul; npm run clean",
"coveralls": "npm run compile && npm run istanbul && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && npm run clean",
"test": "npm run coverage",
"prepublish": "npm test; npm run compile"
},
"files": [
"/*.js",
"/module/",
"/license",
"/readme.md"
],
"keywords": [
"oneliners",
"shorthands",
"get-modules"
],
"dependencies": {
"meow": "^3.1.0"
},
"devDependencies": {
"babel": "^5.1.10",
"coveralls": "^2.11.2",
"husky": "^0.7.0",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "0.0.2",
"nodangel": "1.3.8"
}
}