-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
94 lines (94 loc) · 3.1 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "aurelia-validation",
"version": "2.0.0",
"description": "Validation for Aurelia applications",
"keywords": [
"aurelia",
"plugin",
"validation"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/validation/issues"
},
"license": "MIT",
"author": "Jeremy Danyow <[email protected]> (https:/danyow.net/)",
"main": "dist/commonjs/aurelia-validation.js",
"module": "dist/es2015/aurelia-validation.js",
"browser": "dist/umd/aurelia-validation.js",
"unpkg": "dist/umd-es2015/aurelia-validation.js",
"types": "dist/aurelia-validation.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aurelia/validation"
},
"files": [
"dist",
"doc",
"src",
"typings.json",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint .",
"test": "karma start --single-run",
"test:watch": "npm run test -- --no-single-run",
"test:debugger": "npm run test -- --browsers ChromeDebugging --no-single-run",
"build": "rollup -c --environment NODE_ENV:production",
"postbuild": "npm run build:dts",
"build:dts": "dts-bundle-generator -o dist/aurelia-validation.d.ts src/aurelia-validation.ts",
"doc": "typedoc --json doc/api.json --excludeExternals --name aurelia-validation-docs src/aurelia-validation.ts",
"postdoc": "node doc/cleanup.js",
"precut-release": "npm run test && npm run lint && npm run build",
"changelog": "standard-version -t \"\" -i doc/CHANGELOG.md -s --skip.commit --skip.tag",
"cut-release": "npm run changelog",
"postcut-release": "npm run doc"
},
"dependencies": {
"aurelia-binding": "^2.5.2",
"aurelia-dependency-injection": "^1.5.0",
"aurelia-logging": "^1.5.0",
"aurelia-pal": "^1.8.0",
"aurelia-task-queue": "^1.3.1",
"aurelia-templating": "^1.11.1"
},
"devDependencies": {
"@types/estree": "^1.0.0",
"@types/jasmine": "^4.3.1",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.18",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"aurelia-bootstrapper": "^2.4.0",
"aurelia-pal-browser": "^1.8.1",
"aurelia-pal-nodejs": "3.0.0-rc.1",
"aurelia-polyfills": "^1.3.4",
"aurelia-testing": "^1.1.0",
"aurelia-webpack-plugin": "^5.0.5",
"conventional-changelog-cli": "^2.2.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"dts-bundle-generator": "^7.2.0",
"eslint": "^8.33.0",
"html-loader": "^4.2.0",
"jasmine": "^4.5.0",
"jasmine-core": "^4.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"karma-sourcemap-loader": "^0.3.8",
"karma-typescript": "^5.5.3",
"karma-webpack": "^5.0.0",
"rimraf": "^4.1.2",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.34.1",
"standard-version": "^9.5.0",
"ts-loader": "^9.4.2",
"tslib": "^2.5.0",
"typedoc": "^0.23.24",
"typescript": "^4.9.5",
"webpack": "^5.75.0"
}
}