forked from CityOfZion/neo-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "@cityofzion/neo-js",
"version": "0.8.0",
"private": false,
"description": "A package for running a node on the neo blockchain.",
"main": "dist/neo.js",
"scripts": {
"lint": "./node_modules/.bin/eslint ./{dist,examples,test} --ext .js",
"test": "./node_modules/.bin/mocha -b ./test/unit/**/*",
"test:integration": "./node_modules/.bin/mocha -b ./test/integration/**/*",
"coverage": "./node_modules/.bin/nyc npm test",
"build:docs": "rm -rf ./docs && ./node_modules/.bin/jsdoc -d ./docs -c ./.jsdoc.conf.json ./dist",
"rebuild": "rm -rf ./node_modules && npm install",
"rebuild:hard": "rm -f ./package-lock.json && rm -rf ./node_modules && npm install",
"prepush": "echo 'running lint...' && npm run lint && echo 'running tests...' && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CityOfZion/neo-js.git"
},
"keywords": [
"neo",
"blockchain",
"cityofzion"
],
"author": "lllwvlvwlll",
"license": "MIT",
"bugs": {
"url": "https://github.com/CityOfZion/neo-js/issues"
},
"homepage": "https://github.com/CityOfZion/neo-js#readme",
"dependencies": {
"@cityofzion/neon-js": "^3.2.1",
"async": "~2.5.0",
"axios": "^0.16.2",
"lodash": "~4.17.4",
"loglevel": "^1.6.1",
"mathjs": "^4.1.0",
"moment": "^2.20.1",
"mongoose": "~4.11.3"
},
"devDependencies": {
"@freshes/jsdoc-template": "^1.0.0",
"axios-mock-adapter": "^1.9.0",
"chai": "^4.1.2",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jsdoc": "^3.5.5",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"sinon": "^4.1.3"
}
}