-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
37 lines (37 loc) · 1000 Bytes
/
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
{
"name": "checkit",
"version": "0.7.0",
"description": "Simple validations for node and the browser.",
"main": "index.js",
"scripts": {
"test": "mocha -R spec test/index.js",
"prepublish": "npm test && npm run build",
"build": "npm run build:main && npm run build:dist",
"build:main": "webpack --output-library Checkit --output-library-target umd index.js dist/checkit.js",
"build:dist": "webpack --output-library Checkit --output-library-target umd --optimize-minimize index.js dist/checkit.min.js"
},
"directories": {
"test": "test"
},
"dependencies": {
"inherits": "^2.0.1",
"lodash": "^4.0.0"
},
"devDependencies": {
"mocha": "~2.4.5",
"node-uuid": "~1.4.1",
"webpack": "1.12.13"
},
"repository": {
"type": "git",
"url": "https://github.com/tgriesser/checkit.git"
},
"keywords": [
"validation"
],
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"license": "MIT"
}