-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 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
{
"name": "knockout-async-computed",
"version": "1.2.0",
"description": "Allows you to use async functions or Promises as computed observables",
"main": "dist/knockout-async-computed.js",
"scripts": {
"build": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephenjjbrown/knockout-async-computed.git"
},
"author": "Stephen Brown",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephenjjbrown/knockout-async-computed/issues"
},
"homepage": "https://github.com/stephenjjbrown/knockout-async-computed#readme",
"dependencies": {
"knockout": "^3.5.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/jasmine": "^4.3.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"jasmine": "^4.5.0",
"jasmine-node": "^3.0.0",
"nyc": "^15.1.0",
"typescript": "^4.9.3"
}
}