-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
62
63
{
"name": "foft",
"version": "2.0.2",
"description": "Syntactic sugar for discontinuous (mathematical) functions.",
"main": "src/index.js",
"module": "src/main.js",
"scripts": {
"lint": "standard --fix src/*",
"clean": "rm -rf docs test disttest .nyc_output coverage dist lib ./foftmochajs.html",
"coverage": "codecov",
"predoc": "clear && rm -rf docs",
"doc": "jsdoc ./src/foft.js -c jsdoc.json -d ./docs/ -r ./README.md --verbose -t ./node_modules/ink-docstrap/template",
"pretest": "npm run lint && clear && rm -rf test coverage .nyc_output && rsync -rv src/* test",
"test": "cross-env NODE_ENV=test nyc --require esm --reporter=text --reporter=html --show-process-tree mocha ./test/mocha/nodetestrunner.js",
"prewtest": "clear && rm -rf test && rsync -rv src/* test",
"wtest": "cross-env NODE_ENV=test mocha --watch --reporter=min --require esm ./test/mocha/nodetestrunner.js",
"preversion": "npm test && npm run doc",
"postversion": "git push"
},
"repository": {
"type": "git",
"url": "https://github.com/anwarhahjjeffersongeorge/foft"
},
"bugs": {
"url": "https://github.com/anwarhahjjeffersongeorge/foft/issues"
},
"homepage": "https://github.com/anwarhahjjeffersongeorge/foft#readme",
"keywords": [],
"author": "Anwar Hahj Jefferson-George <[email protected]>",
"license": "Unlicense",
"nyc": {
"exclude": [
"coverage/**",
"node_modules/**",
"test/mocha/**",
"src/main.js"
]
},
"browserslist": [
"last 1 version",
"> 1%",
"current node",
"not dead"
],
"dependencies": {
"esm": "^3.2.25"
},
"devDependencies": {
"browserify": "^16.5.1",
"chai": "^4.2.0",
"chai-almost": "^1.0.1",
"chai-as-promised": "^7.1.1",
"codecov": "^3.6.5",
"cross-env": "^5.2.1",
"dirty-chai": "^2.0.1",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.4",
"minify": "^4.1.3",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"standard": "^12.0.1"
}
}