-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
83 lines (83 loc) · 3.38 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
{
"name": "omg-js",
"version": "4.1.1-1.0.4",
"private": true,
"description": "JavaScript Library to interact with OMG Network",
"scripts": {
"lerna-reset": "lerna clean --yes && lerna bootstrap",
"release": "npm run build && lerna publish --exact",
"release-fromgit": "lerna publish from-git",
"release-frompackage": "lerna publish from-package",
"postinstall": "npm run lerna-reset",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix",
"build": "browserify browserify.js -o packages/browser-omg-js/omg.js",
"build-doc": "documentation build packages/omg-js/src/** packages/omg-js-childchain/src/** packages/omg-js-rootchain/src/** packages/omg-js-util/src/** --config documentation.yml -f html -o docs",
"mocha": "mocha --timeout=0 --bail --slow=0 --check-leaks --full-trace",
"test": "mocha packages/omg-js-childchain/test packages/omg-js-rootchain/test packages/omg-js-util/test",
"sequence-test": "npm run mocha packages/integration-tests/sequence-test",
"ci-min-smoke-test": "npm run mocha packages/integration-tests/ci-min-smoke-test",
"ci-baseline-test": "npm run mocha packages/integration-tests/ci-baseline-test",
"ci-ife-test": "npm run mocha packages/integration-tests/ci-ife-test",
"parallel-test": "node packages/integration-tests/parallel-test",
"cleanup-faucets": "node packages/integration-tests/cleanup-faucets",
"audit-check": "audit-ci --moderate",
"audit-check-omg-js": "cd packages/omg-js && npm run audit-check",
"audit-check-omg-browser": "cd packages/browser-omg-js && npm run audit-check",
"audit-check-omg-childchain": "cd packages/omg-js-childchain && npm run audit-check",
"audit-check-omg-rootchain": "cd packages/omg-js-rootchain && npm run audit-check",
"audit-check-omg-util": "cd packages/omg-js-util && npm run audit-check",
"audit-check-omg-react-native": "cd packages/react-native-omg-js && npm run audit-check",
"audit-all": "npm run audit-check-root && npm run audit-check-omg-js && npm run audit-check-omg-browser && npm run audit-check-omg-childchain && npm run audit-check-omg-rootchain && npm run audit-check-omg-util && npm run audit-check-omg-react-native"
},
"author": "OmiseGo",
"contributors": [
"Pong Cheecharern <@Pongch>",
"Kevin Sullivan <@kevsul>",
"Jarindr Thitadilaka <@jarindr>",
"Nicholas Mueller <@nicholasmueller>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/omisego/omg-js.git"
},
"bugs": {
"url": "https://github.com/omisego/omg-js/issues"
},
"devDependencies": {
"audit-ci": "^2.5.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"documentation": "^12.1.3",
"dotenv": "^6.0.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"lerna": "^3.18.4",
"mocha": "^5.2.0",
"mocha-parallel-tests": "^2.2.2",
"sinon": "^7.5.0",
"standard": "^12.0.1",
"truffle": "^4.1.14",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"docs",
"dist",
"packages/integration-tests/tokens"
]
},
"dependencies": {
"browserify": "^16.5.1"
}
}