-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
86 lines (86 loc) · 2.29 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
{
"name": "knockout-decorators",
"version": "2.0.0",
"description": "Decorators for use Knockout JS in TypeScript and ESNext environments",
"main": "dist/knockout-decorators.js",
"module": "dist/knockout-decorators.esm.js",
"typings": "dist/knockout-decorators.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "shx rm -rf dist && npm run build-dist & npm run build-typings",
"build-dist": "rollup -c",
"build-typings": "tsc -p tsconfig.typings.json && npm run move-typings && npm run fix-typings",
"move-typings": "shx cp __temp/knockout-decorators.d.ts dist/knockout-decorators.d.ts && shx rm -rf __temp",
"fix-typings": "shx echo \"export as namespace KnockoutDecorators;\" >> dist/knockout-decorators.d.ts",
"lint": "tslint --project tsconfig.json",
"test": "jest --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnaeus/knockout-decorators.git"
},
"keywords": [
"ko",
"knockout",
"knockoutjs",
"observable",
"decorators",
"reactive",
"reactive-programming",
"state management",
"typescript"
],
"author": "Dmitry Panyushkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/gnaeus/knockout-decorators/issues"
},
"homepage": "https://github.com/gnaeus/knockout-decorators#readme",
"devDependencies": {
"@types/jest": "^24.0.16",
"coveralls": "^3.0.5",
"deepmerge": "^4.0.0",
"jest": "^24.8.0",
"knockout": "^3.5.0",
"rollup": "^1.18.0",
"rollup-plugin-filesize": "^6.1.1",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.22.1",
"shx": "^0.3.2",
"ts-jest": "^24.0.2",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.5.3"
},
"peerDependencies": {
"knockout": "^3.5.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**",
"!src/experimental/**"
],
"coverageReporters": [
"lcov",
"text"
],
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json"
}
},
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.(js|ts)$": "ts-jest"
},
"testRegex": "/test/.*(test|benchmark)\\.ts$",
"testURL": "http://localhost"
}
}