forked from EOSIO/eosjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.94 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
{
"name": "cyberwayjs",
"version": "20.0.2",
"description": "Talk to cyberway API",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run clean && npm run build",
"test": "jest",
"lint": "tslint -c tslint.json src/**/*.ts",
"lint-fix": "tslint -c tslint.json src/**/*.ts --fix",
"build": "tsc -p ./tsconfig.json && cp src/ripemd.es5.js dist/ripemd.js",
"build-web": "webpack --config webpack.prod.js && webpack --config webpack.debug.js",
"clean": "rm -rf dist",
"docs-init": "sh .docs/scripts/init.sh",
"docs-build": "sh .docs/scripts/build.sh",
"docs-serve": "python -m SimpleHTTPServer",
"docs-publish": "sh .docs/scripts/publish.sh"
},
"files": [
"dist",
"dist-web",
"src"
],
"author": "Good guys",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GolosChain/cyberwayjs.git"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"eosjs-ecc": "^4.0.1",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.3.1",
"@types/text-encoding": "^0.0.35",
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-1": "^6.24.1",
"jest": "^23.5.0",
"jest-fetch-mock": "^1.6.5",
"json-loader": "^0.5.7",
"ts-jest": "^23.1.4",
"ts-loader": "^4.3.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^2.9.1",
"webpack": "^4.11.0",
"webpack-cli": "^3.0.2"
},
"jest": {
"automock": false,
"setupFiles": [
"./src/tests/setupJest.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(tsx?)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironment": "node"
}
}