forked from JCCDex/jcc_exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.96 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
{
"name": "jcc_exchange",
"version": "3.1.15",
"description": "api of jcc exchange",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"dependencies": {
"@swtc/common": "^1.0.11",
"@swtc/serializer": "^1.0.9",
"@swtc/wallet": "^1.0.11",
"@types/node": "^13.7.7",
"jcc_rpc": "^0.3.0"
},
"devDependencies": {
"acorn": "^7.1.1",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"husky": "^4.2.3",
"karma": "^5.1.0",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-detect-browsers": "^2.3.3",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"sinon": "^9.0.0",
"ts-loader": "^6.2.1",
"tslint": "^6.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"deploy": "./publish.sh",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "npm run test:node && npm run test:browser",
"test:node": "tsc && nyc --extension=.ts --reporter=lcov --reporter=html --reporter=text mocha --timeout=3000 test/*.spec.js",
"test:browser": "tsc && karma start karma.conf.js",
"tslint": "tslint --project tsconfig.json --config tslint.json",
"pretty": "prettier --write {src,test}/**/*.{js,ts}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCCDex/jcc_exchange.git"
},
"keywords": [
"jcc",
"exchange"
],
"author": "JCCDex",
"license": "MIT",
"bugs": {
"url": "https://github.com/JCCDex/jcc_exchange/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run tslint && pretty-quick --staged"
}
},
"homepage": "https://github.com/JCCDex/jcc_exchange#readme"
}