forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 3.7 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
{
"name": "eth-optimism",
"version": "0.0.1",
"description": "Optimism monorepo",
"private": true,
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"install": "yarn run patch",
"pkgparse": "echo ${PKGS:-'*'} | sed -e 's#,# @eth-optimism*/#g' -e 's#^#@eth-optimism*/#'",
"pkgparse:core": "echo ${PKGS:-'*'} | sed -e 's#,# @eth-optimism/#g' -e 's#^#@eth-optimism/#'",
"pkgparse:integration": "echo ${PKGS:-'*'} | sed -e 's#,# @eth-optimism-test/#g' -e 's#^#@eth-optimism-test/#'",
"lint": "wsrun -p $(yarn --silent run pkgparse) --parallel --exclude-missing lint",
"fix": "wsrun -p $(yarn --silent run pkgparse) --fast-exit --parallel --exclude-missing fix",
"clean": "wsrun -p $(yarn --silent run pkgparse) -r --fast-exit --parallel --exclude-missing clean",
"clean_modules": "rm -rf node_modules && find ./packages -type d -maxdepth 2 -name \"node_modules\" -exec rm -r {} +",
"clean_manual": "find ./packages -type d -maxdepth 2 -name \"build\" -exec rm -r {} +",
"test:integration": "wsrun -p $(yarn --silent run pkgparse:integration) --fast-exit --serial --no-prefix --exclude-missing --timeout 5000 test",
"test:core": "wsrun -p $(yarn --silent run pkgparse:core) --fast-exit --parallel --no-prefix --exclude-missing --timeout 5000 test",
"test": "yarn test:core && yarn test:integration",
"build": "yarn run patch && lerna link && wsrun -p $(yarn --silent run pkgparse) -r --fast-exit --stages --exclude-missing build",
"all": "yarn clean && yarn build && yarn test && yarn fix && yarn lint",
"release": "yarn clean && yarn run build && lerna publish --force-publish --exact -m \"chore(@ethereum-optimism) publish %s release\"",
"release:patch": "yarn clean && yarn build && lerna version prerelease --yes && lerna publish from-package --yes --force-publish -m \"chore(@ethereum-optimism) publish %s release\"",
"release:rc": "yarn clean && yarn build && lerna version prerelease --yes && lerna publish from-package --yes --force-publish --npm-tag=rc -m \"chore(@ethereum-optimism) publish %s release\"",
"release:alpha": "yarn clean && yarn build && lerna version prerelease --yes && lerna publish from-package --yes --force-publish --dist-tag=alpha -m \"chore(@ethereum-optimism) publish %s release\"",
"release:beta": "yarn clean && yarn build && lerna version prerelease --yes && lerna publish from-package --yes --force-publish --dist-tag=beta -m \"chore(@ethereum-optimism) publish %s release\"",
"patch": "yarn run patch:ganache && yarn run patch:waffle",
"patch:ganache": "rm node_modules/ganache-core/typings/index.d.ts ||:",
"patch:waffle": "sed -ie 's!Ganache.GanacheOpts!any!g' node_modules/ethereum-waffle/dist/waffle.d.ts"
},
"repository": "git+https://github.com/ethereum-optimism/optimism-monorepo.git",
"keywords": [
"plasma",
"group",
"ethereum"
],
"author": "Optimism",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum-optimism/optimism-monorepo/issues"
},
"homepage": "https://github.com/ethereum-optimism/optimism-monorepo#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.3",
"@types/sinon-chai": "^3.2.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"lerna": "^3.13.1",
"mocha": "^6.0.2",
"prettier": "^1.16.4",
"ts-node": "8.0.2",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"tslint-no-focused-test": "^0.5.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.3.3333",
"wsrun": "^3.6.4"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"chai-bignumber": "^3.0.0",
"level": "^6.0.0"
}
}