-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
73 lines (73 loc) · 2.36 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
{
"name": "aurelia-templating-binding",
"version": "1.6.0",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
"templating",
"html",
"databinding"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/templating-binding/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "dist/commonjs/aurelia-templating-binding.js",
"module": "dist/native-modules/aurelia-templating-binding.js",
"typings": "dist/types/aurelia-templating-binding.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/aurelia/templating-binding"
},
"files": [
"dist",
"doc/CHANGELOG.md",
"src",
"typings.json",
"README.md",
"LICENSE"
],
"scripts": {
"test": "karma start --single-run",
"test:watch": "karma start",
"test:debugger": "karma start --browsers ChromeDebugging",
"lint": "eslint .",
"build": "rollup -c",
"build:dts": "dts-bundle-generator -o dist/types/aurelia-templating-binding.d.ts src/aurelia-templating-binding.ts",
"postbuild": "npm run build:dts",
"typedoc": "typedoc src/aurelia-templating-binding.ts --json doc/api.json",
"posttypedoc": "node doc/cleanup.js",
"changelog": "standard-version -t \"\" -i doc/CHANGELOG.md --skip.commit --skip.tag",
"precut-release": "npm run test && npm run lint && npm run build",
"cut-release": "npm run changelog",
"postcut-release": "npm run typedoc"
},
"dependencies": {
"aurelia-binding": "^2.0.0",
"aurelia-logging": "^1.0.0",
"aurelia-templating": "^1.11.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/jasmine": "^4.0.2",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"aurelia-pal-browser": "^1.8.1",
"aurelia-polyfills": "^1.3.4",
"dts-bundle-generator": "^6.5.0",
"eslint": "^8.12.0",
"jasmine-core": "^4.0.1",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^4.0.2",
"karma-typescript": "^5.5.3",
"rollup": "^2.70.1",
"standard-version": "^9.3.2",
"typedoc": "^0.22.13",
"typescript": "^4.6.3"
}
}