-
Notifications
You must be signed in to change notification settings - Fork 619
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 744 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 744 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
{
"name": "is_js",
"version": "0.9.0",
"main": "is.js",
"license": "MIT",
"description": "micro check library",
"homepage": "http://is.js.org/",
"repository": "arasatasaygin/is.js",
"scripts": {
"build": "npm run lint && npm run min",
"lint": "eslint .",
"min": "uglifyjs is.js -m --comments \"/^!/\" -o is.min.js",
"test": "mocha --check-leaks -R dot",
"test:phantom": "mocha-phantomjs -R dot test/index.html"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^2.13.1",
"lodash": "^4.15.0",
"mocha": "^2.2.1",
"mocha-phantomjs": "^4.1.0",
"pre-commit": "^1.1.3",
"uglify-js": "^2.7.3"
},
"files": [
"is.js",
"is.min.js"
]
}