forked from parcel-bundler/parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "@parcel/monorepo",
"description": "Blazing fast, zero configuration web application bundler",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/parcel-bundler/parcel.git"
},
"private": true,
"workspaces": [
"packages/*/*"
],
"scripts": {
"build": "lerna run build --stream",
"test": "lerna run test --stream",
"test-ci": "lerna run test-ci --stream",
"lint": "eslint . && prettier \"./packages/*/*/{src,bin,test}/**/*.{js,json,md}\" --list-different",
"format": "prettier --write \"./packages/*/*/{src,bin,test}/**/*.{js,json,md}\"",
"precommit": "lint-staged",
"clean-test": "rimraf packages/core/integration-tests/.parcel-cache && rimraf packages/core/integration-tests/dist",
"clean": "yarn clean-test && lerna clean --yes && lerna exec -- rm -rf ./lib && yarn",
"postinstall": "yarn build"
},
"devDependencies": {
"eslint": "^5.16.0",
"flow-bin": "0.98.1",
"lerna": "^3.3.2",
"lint-staged": "^7.2.2",
"mocha": "^6.1.3",
"mocha-junit-reporter": "^1.21.0",
"mocha-multi-reporters": "^1.1.7",
"prettier": "1.14.2",
"sinon": "^7.3.1"
},
"engines": {
"node": ">= 8.0.0"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/parcel"
}
}