This repository has been archived by the owner on May 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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": "ko-validate",
"version": "0.0.0",
"description": "Simpler Validation for Knockout JS",
"main": "dist/ko-validate.js",
"scripts": {
"test": "export NODE_ENV=test; nyc --reporter=lcov --reporter=html tape 'test/**/*.js'",
"test:watch": "tape-watch -r babel-register 'test/**/*.js'",
"debug": "iron-node ./node_modules/tape-watch/bin/tape-watch -r babel-register 'test/**/*.js'",
"build": "webpack",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"keywords": [
"knockout",
"knockoutjs",
"validation"
],
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/Profiscience/ko-validate"
},
"bugs": {
"url": "https://github.com/Profiscience/ko-validate/issues"
},
"homepage": "https://github.com/Profiscience/ko-validate#readme",
"author": "Casey Webb <[email protected]>",
"peerDependencies": {
"knockout": "^3.4.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"coveralls": "^3.0.0",
"knockout": "^3.4.0",
"lodash": "^4.17.4",
"nyc": "^11.0.2",
"tape": "^4.6.3",
"webpack": "^3.0.0"
},
"optionalDependencies": {
"eslint": "^4.1.0",
"eslint-config-profiscience": "^2.0.0",
"iron-node": "^3.0.17",
"tape-watch": "^2.2.4"
}
}