-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.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
{
"name": "aurelia-knockout",
"version": "2.4.2",
"main": "dist/commonjs/aurelia-knockout.js",
"author": "Christian Kotzbauer <[email protected]> (Twitter: https://twitter.com/ckotzbauer1)",
"license": "MIT",
"typings": "dist/commonjs/aurelia-knockout.d.ts",
"description": "A Knockout plugin for Aurelia.",
"keywords": [
"aurelia",
"binding",
"databinding",
"knockout"
],
"scripts": {
"test": "tsc --project tsconfig.json --target es6 --module commonjs --outDir dist/test && ava dist/test/**/*.spec.js",
"ci": "npm run build && npm run test",
"build": "aurelia-tools ts-build-all --continue-when-failed --clean-before"
},
"homepage": "https://github.com/aurelia-contrib/aurelia-knockout",
"bugs": {
"url": "https://github.com/aurelia-contrib/aurelia-knockout/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/aurelia-contrib/aurelia-knockout"
},
"devDependencies": {
"@types/knockout": "^3.4.67",
"@types/sinon": "^7.5.1",
"aurelia-tools": "github:aurelia/tools#cli",
"ava": "^3.4.0",
"sinon": "^9.0.0",
"typescript": "^3.8.2"
},
"dependencies": {
"aurelia-binding": "^2.5.2",
"aurelia-dependency-injection": "^1.5.2",
"aurelia-loader": "^1.0.2",
"aurelia-pal": "^1.8.2",
"aurelia-templating": "^1.10.3",
"knockout": "^3.5.1"
}
}