-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "es-checker",
"version": "1.4.1",
"description": "A feature detection library for ECMAScript in node.js and browser",
"main": "index.js",
"scripts": {
"test": "mocha",
"build": "browserify public/assets/origin.js -o es-checker.js && cp -f es-checker.js public && browserify public/assets/mapper.origin.js -o public/assets/mapper.js && cp -rf public dist",
"pages": "gh-pages -d dist",
"prepublish": "npm run build && npm run pages && rm -rf dist"
},
"bin": {
"es-checker": "./bin/check.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ruanyf/es-checker"
},
"keywords": [
"ecmascript",
"ecmascript 6",
"ecmascript 2015",
"feature",
"tests"
],
"author": "Ruan Yifeng",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruanyf/es-checker/issues"
},
"homepage": "https://github.com/ruanyf/es-checker",
"dependencies": {
"chai": "^3.0.0",
"chalk": "^1.0.0"
},
"language": "en",
"devDependencies": {
"browserify": "^13.0.1",
"gh-pages": "^0.11.0"
}
}