-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.35 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "aurelia-dialog-lite",
"version": "1.0.1",
"description": "A lite dialog plugin for Aurelia.",
"keywords": [
"aurelia",
"plugin",
"dialog",
"modal"
],
"main": "./dist/index.js",
"files": [
"dist"
],
"license": "MIT",
"homepage": "https://github.com/aurelia-contrib/aurelia-dialog-lite",
"bugs": {
"url": "https://github.com/aurelia-contrib/aurelia-dialog-lite/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/aurelia-contrib/aurelia-dialog-lite"
},
"devDependencies": {
"@types/jasmine": "^3.5.14",
"@types/node": "^14.11.2",
"aurelia-bootstrapper": "^2.3.3",
"aurelia-deps-finder": "^2.1.2",
"aurelia-testing": "^1.0.0",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.1.0",
"browser-do": "^3.0.0",
"connect": "^3.7.0",
"connect-history-api-fallback": "^1.6.0",
"connect-injector": "^0.4.4",
"cross-env": "^7.0.2",
"del": "^5.1.0",
"eslint": "^7.9.0",
"gulp": "^4.0.2",
"gulp-dumber": "^1.0.3",
"gulp-if": "^3.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.4.0",
"gulp-typescript": "^5.0.1",
"htmlhint": "0.14.1",
"jasmine-core": "^3.6.0",
"merge2": "^1.4.1",
"open": "^7.2.1",
"postcss-url": "^8.0.0",
"promise-polyfill": "^8.1.3",
"serve-static": "^1.14.1",
"socket.io": "^2.3.0",
"standard-changelog": "^2.0.24",
"tslint": "^6.1.2",
"typescript": "^4.0.3"
},
"scripts": {
"js-lint": "tslint -c tslint.json \"src/**/*.ts\" \"test/**/*.ts\"",
"html-lint": "htmlhint -c .htmlhintrc src",
"lint": "npm run js-lint && npm run html-lint",
"pretest": "npm run lint && npm run build:test",
"build:test": "gulp clean && cross-env NODE_ENV=test gulp build",
"start": "gulp",
"build:dev": "gulp clean && gulp build-plugin",
"build": "gulp clean && cross-env NODE_ENV=production gulp build-plugin",
"prepare": "npm run build",
"preversion": "npm test",
"clear-cache": "gulp clear-cache",
"test": "browser-do --jasmine < scripts/entry-bundle.js",
"browser-test": "npm run build:test && browser-do --jasmine --browser chrome < scripts/entry-bundle.js",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish"
}
}