forked from worldwide-asset-exchange/waxjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "@waxio/waxjs",
"version": "1.0.2",
"description": "Javascript API for integration with the WAX Cloud Wallet.",
"scripts": {
"build": "tsc",
"build-web": "webpack --config webpack.prod.js",
"prettier": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"test/**/*.ts\" \"test/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "npm run lint && mocha -r ts-node/register test/**/*.test.ts",
"docs": "typedoc --excludePrivate --exclude src/waxEventSource.ts --out docs src",
"docs:serve": "serve -s docs",
"serve": "serve -s dist-web",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run prettier && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "WAX",
"homepage": "https://github.com/worldwide-asset-exchange/waxjs#readme",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
"chai": "^4.2.0",
"expect-puppeteer": "^5.0.4",
"mocha": "^6.2.0",
"prettier": "^1.18.2",
"puppeteer": "^10.1.0",
"serve": "^11.1.0",
"ts-loader": "^6.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3",
"webpack": "^4.40.3",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"eosjs": "^22.1.0"
},
"files": [
"dist"
]
}