forked from tgriesser/checkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1019 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1019 Bytes
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
{
"name": "checkit",
"version": "0.6.0",
"description": "Simple validations for node and the browser.",
"main": "server.js",
"browser": "browser.js",
"scripts": {
"test": "mocha -R spec test/index.js",
"build": "npm run build:main && npm run build:dist",
"build:main": "webpack --output-library Checkit --output-library-target umd browser.js dist/checkit.js",
"build:dist": "webpack --output-library Checkit --output-library-target umd --optimize-minimize browser.js dist/checkit.min.js"
},
"directories": {
"test": "test"
},
"dependencies": {
"bluebird": "^2.9.14",
"inherits": "^2.0.1",
"lodash": "^2.4.0 || ^3.0.0",
"when": "^3.0.0"
},
"devDependencies": {
"mocha": "~1.15.0",
"node-uuid": "~1.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/tgriesser/checkit.git"
},
"keywords": [
"validation"
],
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"license": "MIT"
}