-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "mp-wasm",
"version": "0.4.0",
"description": "Multiple precision arithmetic in JS with WASM",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"build:wasm": "make",
"build:web": "browserify browser.js -o mp-wasm.js",
"build": "npm run build:wasm && npm run build:web",
"test:node": "nyc --reporter=html --reporter=text mocha",
"test:nodewatch": "mocha --watch",
"test:web": "karma start --single-run",
"test:webwatch": "karma start",
"test": "mocha && karma start --single-run",
"prepack": "npm run lint && npm t && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cag/mp-wasm.git"
},
"author": "Alan Lu",
"license": "MIT",
"bugs": {
"url": "https://github.com/cag/mp-wasm/issues"
},
"homepage": "https://github.com/cag/mp-wasm#readme",
"dependencies": {
"humps": "^2.0.1",
"lru_map": "^0.3.3"
},
"devDependencies": {
"browserify": "^16.2.3",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"karma": "^3.1.3",
"karma-browserify": "^6.0.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "1.15.3",
"watchify": "^3.11.0"
},
"nyc": {
"exclude": [
"index.js",
"browser.js",
"test/**/*.js"
]
}
}