forked from parcel-bundler/parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.43 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
{
"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": "cross-env NODE_ENV=production PARCEL_BUILD_ENV=production gulp",
"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",
"format": "prettier --write \"./packages/*/*/{src,bin,test}/**/*.{js,json,md}\"",
"link-all": "node scripts/link-all.js packages",
"unlink-all": "node scripts/unlink-all.js packages",
"check": "flow check",
"lint": "eslint . && prettier \"./packages/*/*/{src,bin,test}/**/*.{js,json,md}\" --list-different",
"lint:readme": "node scripts/validate-readme-toc.js",
"prepublishOnly": "yarn build",
"test:unit": "cross-env NODE_ENV=test mocha",
"test:integration": "yarn workspace @parcel/integration-tests test",
"test:integration-ci": "yarn workspace @parcel/integration-tests test-ci",
"test": "yarn test:unit && yarn test:integration",
"update-readme-toc": "doctoc README.md",
"nightly:release": "lerna publish -y --canary --preid nightly --dist-tag=nightly --exact --force-publish=* --no-git-tag-version --no-push",
"tag:prerelease": "lerna version --exact --force-publish=* --no-git-tag-version --no-push",
"tag:release": "lerna version --force-publish=* --no-git-tag-version --no-push",
"release": "lerna publish -y from-package --dist-tag=next --no-git-tag-version --no-push"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"cross-env": "^7.0.0",
"doctoc": "^1.4.0",
"eslint": "^6.0.0",
"flow-bin": "0.129.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"husky": "^4.2.5",
"lerna": "^3.3.2",
"lint-staged": "^10.2.11",
"mocha": "^6.1.3",
"mocha-junit-reporter": "^1.21.0",
"mocha-multi-reporters": "^1.1.7",
"prettier": "1.19.1",
"rimraf": "^2.6.3",
"sinon": "^7.3.1"
},
"engines": {
"node": ">= 10.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": "prettier --write"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/parcel"
}
}