-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.6 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": "big-sum",
"version": "1.1.0",
"description": "sum array represented of big numbers",
"main": "lib/big-sum.js",
"scripts": {
"test": "tape test/*.js",
"coverage": "nyc npm test",
"lint": "eslint lib test",
"report": "nyc report --reporter=text-lcov | coveralls",
"build": "redrun clean 6to5 legacy:*",
"6to5": "babel -d legacy/lib lib",
"wisdom": "npm run build",
"clean": "rimraf legacy/*",
"watcher": "nodemon -w test -w lib --exec",
"watch:test": "npm run watcher -- npm test",
"watch:lint": "npm run watcher -- 'npm run lint'",
"watch:tape": "nodemon -w test -w lib --exec tape",
"watch:coverage:base": "npm run watcher -- nyc npm test",
"watch:coverage:tape": "npm run watcher -- nyc tape",
"watch:coverage": "bin/redrun.js watch:coverage:base",
"legacy:index": "echo \"module.exports = require('./lib/big-sum');\" > legacy/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/coderaiser/big-sum.git"
},
"keywords": [
"big",
"sum"
],
"author": "coderaiser <[email protected]> (http://coderaiser.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderaiser/big-sum/issues"
},
"homepage": "https://github.com/coderaiser/big-sum",
"devDependencies": {
"babel-cli": "^6.1.1",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"eslint": "^5.0.0",
"mock-require": "^3.0.2",
"nodemon": "^1.11.0",
"nyc": "^12.0.0",
"redrun": "^6.0.0",
"rimraf": "^2.4.3",
"tape": "^4.2.0"
},
"dependencies": {
"big-wrap": "^1.0.0"
}
}