-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 KB
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
{
"name": "@abramltd/ecc",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:browser": "browserify __tests__/browser/*.test.js > build/index.js && http-server -o -a localhost",
"test:node": "jest --testMatch '**/node/?(*.)+(spec|test).js?(x)'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbramLtd/ECC.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AbramLtd/ECC/issues"
},
"homepage": "https://github.com/AbramLtd/ECC#readme",
"optionalDependencies": {
"secp256k1": "^3.5.0"
},
"dependencies": {
"buffer": "^5.1.0",
"elliptic": "^6.4.0",
"nan": "^2.10.0"
},
"devDependencies": {
"browserify": "^16.2.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"expect": "^23.3.0",
"http-server": "^0.11.1",
"jest": "^23.1.0",
"mocha": "^5.2.0"
},
"jest": {
"verbose": true
}
}