This repository has been archived by the owner on Dec 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
106 lines (106 loc) · 3.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "nuls-js",
"version": "1.1.01",
"description": "Isomorphic JavaScript SDK for Nuls blockchain",
"main": "dist/nuls-js.cjs.js",
"unpkg": "dist/nuls-js.umd.js",
"jsdelivr": "dist/nuls-js.umd.js",
"browser": "dist/nuls-js.umd.js",
"typings": "dist/index.d.ts",
"files": [
"readme.md",
"dist/**/*.{d.ts,js}",
"src/**/*.d.ts"
],
"scripts": {
"build": "npm run build:clean && webpack --mode development --config webpack.config.js",
"build:prod": "npm run build:clean && webpack --mode production --config webpack.config.js",
"build:clean": "rimraf dist",
"tsnode": "ts-node --project tsconfig.json -O '{\"module\": \"commonjs\", \"allowJs\": true}' tests/index.ts",
"test": "npm run test:jest",
"test:lint": "./node_modules/.bin/eslint --ext=js,ts ./src",
"test:jest": "jest -u",
"test:jest:coverage": "npm run test:jest -- --coverage",
"test:jest:watch": "npm run test:jest -- --watch",
"test:jest:coveralls": "npm run test:jest:coverage && cat ./testConfigs/reports/coverage/lcov.info | coveralls",
"vuepress": "vuepress dev docs",
"vuepress:build": "vuepress build docs",
"docs:build": "npm run docs:clean && npm run docs:typedoc && npm run vuepress:build",
"docs:typedoc": "typedoc --options typedoc.js ./src",
"docs:clean": "rimraf docs/.vuepress/public/typedoc && rimraf docs/.vuepress/dist"
},
"repository": {
"type": "git",
"url": "https://github.com/CCC-NULS/nuls-js"
},
"keywords": [
"nuls",
"nuls-js",
"sdk",
"blockchain"
],
"license": "MIT",
"engines": {
"node": ">=7.8.0"
},
"peerDependencies": {
"es6-promise": "4.2.x"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@types/bs58": "^3.0.30",
"@types/deepmerge": "^2.2.0",
"@types/jest": "^23.3.5",
"@types/node": "^10.11.7",
"@types/secp256k1": "^3.5.0",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"@typescript-eslint/typescript-estree": "^1.4.2",
"axios-mock-adapter": "^1.15.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"copy-webpack-plugin": "^4.5.4",
"coveralls": "^3.0.2",
"eslint": "^5.15.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-typescript": "^0.12.0",
"file-loader": "^3.0.1",
"jest": "^23.6.0",
"js-yaml": "^3.11.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.6",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3",
"typescript-eslint-parser": "^20.0.0",
"url-loader": "^1.1.2",
"vuepress": "^1.0.0-alpha.40",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"axios": "^0.18.0",
"bs58": "^4.0.1",
"config": "^2.0.1",
"crypto-js": "^3.1.9-1",
"eventemitter3": "^3.1.0",
"int64-buffer": "^0.99.1007",
"jimp": "^0.5.6",
"qrcode": "^1.3.0",
"ripemd160": "^2.0.2",
"secp256k1": "^3.5.2",
"sha.js": "^2.4.11",
"web3-core-promievent": "^1.0.0-beta.46"
}
}