-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "@phased/core",
"private": true,
"workspaces": [
"packages/@phased/*"
],
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@rollup/plugin-alias": "^3.0.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-sucrase": "^3.0.0",
"@sucrase/jest-plugin": "^2.0.0",
"brotli-size": "^4.0.0",
"chalk": "^4.0.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"execa": "^4.0.0",
"gzip-size": "^5.1.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"minimist": "^1.2.0",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"pretty-bytes": "^5.3.0",
"rollup": "^2.0.0",
"rollup-plugin-terser": "^6.1.0",
"semver": "^7.3.2",
"tslib": "^2.0.0",
"typescript": "^3.7.5"
},
"scripts": {
"test:js": "jest",
"test:php": "vendor/bin/pest",
"test": "yarn test:js && yarn test:php",
"bump": "node -r esm build/version.js",
"notes": "node -r esm -r dotenv/config build/release-notes.js",
"build": "node -r esm build/build-js.js",
"watch": "node -r esm build/watch-js.js",
"pretest:js": "yarn build"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"ora": "^5.0.0"
}
}