-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 994 Bytes
/
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
{
"name": "dumberjs-new",
"private": true,
"version": "0.10.0",
"description": "'makes' skeleton for creating app using dumber bundler. This package.json file is not required by 'makes', it's only to enable testing on skeletons.",
"license": "MIT",
"devDependencies": {
"ava": "^6.1.3",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"del": "^6.1.1",
"glob": "^10.3.15",
"makes": "^3.2.0",
"npm-check-updates": "^16.14.20",
"puppeteer": "^22.9.0",
"semver": "^7.6.2",
"standard-changelog": "^6.0.0",
"tree-kill": "^1.2.2",
"vinyl": "^3.0.0"
},
"scripts": {
"check-upgrade": "node check-upgrade.js",
"test": "ava \"__test__/**/*\"",
"test:e2e": "ava --fail-fast --timeout 8m -v e2e-test.js",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"ava": {
"files": [
"__test__/**/*",
"e2e-test.js"
]
}
}