forked from jquense/yup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "yup",
"version": "0.10.1",
"description": "Dead simple Object schema validation",
"main": "lib/index.js",
"scripts": {
"test": "npm run build && karma start --single-run",
"clean": "rimaf ./lib/*",
"build": "babel src --out-dir lib",
"release": "release"
},
"repository": {
"type": "git",
"url": "https://github.com/jquense/yup.git"
},
"author": "@monasticpanic Jason Quense",
"license": "MIT",
"bugs": {
"url": "https://github.com/jquense/yup/issues"
},
"homepage": "https://github.com/jquense/yup",
"devDependencies": {
"babel": "^5.8.23",
"babel-loader": "^5.3.2",
"babel-plugin-external-helpers": "^1.1.1",
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"karma": "^0.13.14",
"karma-chrome-launcher": "^0.2.0",
"karma-jsdom-launcher": "^1.0.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^1.21.4",
"node-libs-browser": "^0.5.2",
"phantomjs": "^1.9.17",
"release-script": "^0.5.2",
"sinon": "^1.10.3",
"sinon-chai": "^2.5.0",
"webpack": "^1.12.2"
},
"dependencies": {
"case": "^1.2.1",
"fn-name": "~1.0.1",
"promise": "~7.0.0",
"property-expr": "^1.2.0",
"toposort": "^0.2.10"
},
"release-script": {
"defaultDryRun": "false",
"skipBuildStep": "true"
}
}