-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "not-valid-knockout",
"version": "2.0.0",
"description": "Interface between not-valid and knockout",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"prepublishOnly": "npm run review && npm run build",
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"lint": "tslint -c tslint.json index.ts test.ts",
"test": "npm run build:test && alsatian test.js",
"test:ci": "npm run build:test && alsatian test.js --tap | tap-xunit > ./test-results.xml",
"review": "npm run test && npm run lint"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"validation",
"knockout"
],
"license": "MIT",
"author": "NewOrbit Ltd",
"repository": {
"type": "git",
"url": "git+https://github.com/NewOrbit/not-valid-knockout.git"
},
"bugs": {
"url": "https://github.com/NewOrbit/not-valid-knockout/issues"
},
"homepage": "https://github.com/NewOrbit/not-valid-knockout#readme",
"dependencies": {
"not-valid": "2.0.0"
},
"devDependencies": {
"@types/node": "^12.12.8",
"@types/knockout": "^3.4.40",
"@neworbit/knockout-test-utils": "0.0.2",
"alsatian": "^3.1.0",
"chalk": "^2.4.2",
"neworbit-tslint-config": "^2.0.0",
"rxjs": "^6.5.4",
"tap-xunit": "^2.2.0",
"tslint": "^6.0.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"rxjs": "6.x"
}
}