forked from esmbly/esmbly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.58 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
{
"name": "root",
"private": true,
"dependencies": {},
"devDependencies": {
"@types/babel__traverse": "^7.0.6",
"@types/jest": "^24.0.9",
"@types/node": "^11.10.5",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"coveralls": "^3.0.2",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.3.2",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.1.0",
"lerna": "^3.13.1",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"build-browser": "lerna run build-browser",
"build-e2e": "yarn run lerna bootstrap && yarn clean-examples && yarn build",
"build-clean": "rimraf ./packages/*/dist",
"clean-examples": "rimraf ./examples/*/dist",
"clean-all": "rimraf ./packages/*/node_modules && yarn build-clean && rimraf ./node_modules",
"dev": "lerna run build-watch --parallel",
"test": "jest --config=jest.config.js",
"test-node8": "jest --config=jest.node8.config.js --runInBand",
"test-e2e": "jest e2e --config=jest.e2e.config.js --runInBand",
"lint": "eslint packages --ext ts --max-warnings 0",
"coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"publish": "yarn build-clean && yarn build && yarn build-browser && lerna publish"
}
}