forked from EOSIO/eosjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.24 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
{
"name": "eosjs",
"version": "20.0.0",
"description": "Talk to eos API",
"main": "dist/index.js",
"scripts": {
"cypress": "./scripts/run-cypress.sh",
"cypress-ui": "./scripts/run-cypress.sh ui",
"prepare": "npm run build",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint-fix": "tslint -c tslint.json -p tsconfig.json --fix",
"test": "jest src/tests/*eosjs*",
"test-node": "jest src/tests/*node*",
"test-all": "yarn test && yarn test-node && yarn cypress",
"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",
"build-production": "yarn build && yarn build-web && yarn test-all",
"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"
},
"author": "block.one",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EOSIO/eosjs.git"
},
"dependencies": {
"babel-runtime": "6.26.0",
"eosjs-ecc": "4.0.4",
"text-encoding": "0.7.0"
},
"devDependencies": {
"@blockone/tslint-config-blockone": "3.0.0",
"@types/jest": "24.0.6",
"@types/node": "11.9.4",
"@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",
"cypress": "3.1.5",
"jest": "23.5.0",
"jest-fetch-mock": "2.1.1",
"json-loader": "0.5.7",
"mocha": "5.2.0",
"mochawesome": "3.1.1",
"ts-jest": "24.0.0",
"ts-loader": "5.3.3",
"tslint": "5.12.1",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.3.3",
"webpack": "4.29.5",
"webpack-cli": "3.2.3"
},
"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"
}
}