-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "can-validate",
"version": "1.2.1",
"main": "can-validate.js",
"description": "Validation plugin for CanJS.",
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"testee": "testee test.html --browsers firefox",
"test": "npm run detect-cycle && npm run jshint && npm run testee",
"jshint": "jshint . --config",
"release:pre": "npm version prerelease && npm run build && npm publish --tag=pre",
"release:patch": "npm version patch && npm run build && npm publish",
"release:minor": "npm version minor && npm run build && npm publish",
"release:major": "npm version major && npm run build && npm publish",
"build": "node build.js",
"develop": "http-server -c-1",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"repository": {
"type": "git",
"url": "https://github.com/canjs/can-validate.git"
},
"keywords": [
"Validate",
"plugin",
"canjs"
],
"author": {
"name": "Bitovi"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/canjs/can-validate/issues"
},
"homepage": "https://github.com/canjs/can-validate",
"devDependencies": {
"bit-docs": "0.0.8",
"detect-cyclic-packages": "^1.1.0",
"http-server": "^0.11.0",
"jshint": "^2.9.4",
"steal": "^1.0.8",
"steal-qunit": "^2.0.0",
"steal-tools": "^1.0.1",
"testee": "^0.9.0"
},
"browser": {},
"steal": {
"ignoreBrowser": true,
"npmIgnore": [
"documentjs",
"testee",
"steal-tools"
],
"npmDependencies": [
"steal-qunit"
]
},
"dependencies": {
"can-reflect": "^1.11.1"
}
}