-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
129 lines (129 loc) · 4.11 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "semux-js",
"version": "1.9.0",
"description": "Semux Javascript SDK Library",
"main": "dist/semux.umd.js",
"module": "dist/semux.es6.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=9"
},
"scripts": {
"prebuild": "cross-env-shell \"npm run format:check && rimraf dist coverage .nyc_output\"",
"build": "cross-env-shell \"rollup -c rollup.config.js\"",
"build:docs": "cross-env-shell \"rimraf docs && npx typedoc src/index.ts\"",
"build:test": "cross-env-shell \"rollup -c rollup.test.config.js\"",
"build:test-api": "cross-env-shell \"rollup -c rollup.test-api.config.js\"",
"build:swagger": "$(npm bin)/swagger-codegen-cli generate -i semux-core/src/main/resources/org/semux/api/swagger/v2.5.0.yml -c swagger/swagger-codegen.json -l typescript-fetch --additional-properties=classname=SemuxApi -o src/lib/api",
"test": "cross-env-shell \"npm run build:test && mocha test/index.js\"",
"test:api": "cross-env-shell \"npm run build:test-api && mocha test/api/index.js\"",
"test:coverage": "cross-env-shell \"npm run build:test && nyc mocha test/index.js\"",
"format": "cross-env-shell \"tslint --project . --fix\"",
"format:check": "cross-env-shell \"tslint --project .\"",
"release": "npm run format:check && npm run build:swagger && npm run build && npm run build:docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semuxproject/semux-js.git"
},
"keywords": [
"semux"
],
"author": "cryptokat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/semuxproject/semux-js/issues"
},
"homepage": "https://github.com/semuxproject/semux-js#readme",
"dependencies": {
"@types/lodash": "^4.14.168",
"@types/long": "^4.0.1",
"@types/node": "^9.6.61",
"atob": "^2.1.2",
"blakejs": "^1.1.0",
"btoa": "^1.2.1",
"buffer": "^5.7.1",
"core-js": "^2.6.12",
"detect-node": "^2.0.5",
"hoek": "^5.0.4",
"https-proxy-agent": "^2.2.4",
"lodash": "^4.17.21",
"long": "^4.0.0",
"mocha-steps": "^1.3.0",
"ripemd160": "^2.0.2",
"tweetnacl": "^1.0.3",
"unfetch": "^3.1.2",
"url": "^0.11.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/karma": "^1.7.8",
"@types/mocha": "^2.2.48",
"browserstacktunnel-wrapper": "^2.0.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"cross-env": "^5.2.1",
"electron": "^9.4.0",
"es7-sleep": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-typescript": "^0.9.0",
"maven": "^4.7.0",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"mocha-typescript": "^1.1.17",
"nyc": "^14.1.1",
"rimraf": "^2.7.1",
"rollup": "^0.56.5",
"rollup-plugin-browserify-transform": "^1.0.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-glob-import": "^0.1.4",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.12.0",
"source-map-support": "^0.5.19",
"static-module": "^2.2.4",
"swagger-nodegen-cli": "3.0.24",
"ts-node": "^5.0.1",
"ts-runtime": "^0.1.35",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.8",
"typedoc-plugin-internal-external": "^2.2.0",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^14.0.0",
"wait-on": "^2.1.2"
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"html",
"text"
],
"include": [
"src/lib/**/*.ts"
],
"exclude": [
"src/lib/**/*.spec.ts"
],
"all": true
}
}