forked from aurelia/new
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 924 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
{
"name": "aurelia2-new",
"private": true,
"version": "0.2.0",
"description": "This package.json file is not needed by 'makes'. We use package.json to setup our tests and changelog.",
"license": "MIT",
"devDependencies": {
"ava": "^3.15.0",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"glob": "^8.0.3",
"makes": "^3.1.2",
"npm-check-updates": "^14.0.1",
"puppeteer": "^14.4.1",
"semver": "^7.3.7",
"standard-changelog": "^2.0.27",
"tree-kill": "^1.2.2",
"vinyl": "^2.2.1"
},
"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"
]
}
}