-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
33 lines (33 loc) · 898 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
{
"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": "^10.3.1",
"makes": "^3.2.0",
"npm-check-updates": "^16.10.13",
"semver": "^7.5.3",
"standard-changelog": "^3.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"
]
}
}