-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.91 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
{
"name": "aurelia-combo",
"description": "An Aurelia plugin for easy keyboard combo short-cuts",
"version": "1.1.4",
"typings": "index.d.ts",
"main": "dist/index.js",
"files": [
"dist",
"index.d.ts"
],
"keywords": [
"aurelia",
"keymaster",
"shortcut"
],
"homepage": "https://github.com/aurelia-contrib/aurelia-combo",
"bugs": {
"url": "https://github.com/aurelia-contrib/aurelia-combo/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/aurelia-contrib/aurelia-combo"
},
"license": "MIT",
"author": "Chunpeng Huo",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/preset-env": "^7.12.11",
"aurelia-bootstrapper": "^2.3.3",
"aurelia-deps-finder": "^2.1.2",
"aurelia-testing": "^1.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"browser-sync": "^2.26.13",
"connect-history-api-fallback": "^1.6.0",
"cross-env": "^7.0.3",
"cypress": "^6.2.1",
"del": "^6.0.0",
"eslint": "^7.17.0",
"eslint-plugin-cypress": "^2.11.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-dumber": "^1.0.3",
"gulp-if": "^3.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.0.1",
"standard-changelog": "^2.0.27",
"start-server-and-test": "^1.11.7"
},
"scripts": {
"lint": "eslint src",
"pretest": "npm run lint",
"start": "gulp",
"build": "gulp clean && cross-env NODE_ENV=production gulp build-plugin",
"prepare": "npm run build",
"preversion": "npm test",
"clear-cache": "gulp clear-cache",
"cypress": "cypress run",
"test": "cross-env CI=1 start-server-and-test start http://localhost:3000 cypress",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish"
}
}