forked from 1-liners/1-liners
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.27 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
54
55
56
57
58
59
60
61
{
"name": "1-liners",
"version": "0.3.6",
"description": "Useful oneliners and shorthand functions",
"license": "MIT",
"repository": "1-liners/1-liners",
"author": {
"name": "stoeffel",
"email": "[email protected]",
"url": "schtoeffel.ch"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"precommit": "npm run docs; npm run create-index; npm run updateCount; git add documentation module/index.js README.md",
"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",
"docs": "babel-node ./utils/createDocs.js; npm run toc; npm run updateCount",
"updateCount": "babel-node ./utils/updateFuncCount.js;",
"toc": "doctoc ./documentation/README.md",
"mocha": "mocha --compilers js:babel/register --ui qunit ./tests",
"compile": "cd ./module; babel --loose=all --plugins object-assign,array-includes --auxiliary-comment-before 'istanbul ignore next' ./*.js --out-dir ../",
"clean": "rm -f *.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",
"create-index": "module-indexer .",
"prepublish": "npm test; npm run create-index; npm run compile",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"major-release": "npm version major && npm publish && git push --follow-tags"
},
"files": [
"/*.js",
"/module/",
"/license",
"/readme.md"
],
"keywords": [
"oneliners",
"shorthands"
],
"dependencies": {},
"devDependencies": {
"babel": "^5.6.3",
"babel-core": "^5.5.6",
"babel-plugin-array-includes": "^1.1.0",
"babel-plugin-object-assign": "^1.2.0",
"coveralls": "^2.11.2",
"doctoc": "^0.14.1",
"dox": "^0.8.0",
"get-modules": "^1.0.2",
"husky": "^0.8.1",
"istanbul": "^0.3.14",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2",
"module-indexer": "^1.0.0",
"nodangel": "^1.3.8"
}
}