forked from Nyalab/caniuse-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "caniuse-api",
"version": "1.4.1",
"description": "request the caniuse data to check browsers compatibilities",
"repository": {
"type": "git",
"url": "https://github.com/nyalab/caniuse-api.git"
},
"keywords": [
"caniuse",
"browserslist"
],
"authors": [
"nyalab",
"MoOx"
],
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"generator.js"
],
"dependencies": {
"browserslist": "^1.0.1",
"caniuse-db": "^1.0.30000346",
"lodash.memoize": "^2.4.1",
"lodash.uniq": "^3.1.0",
"shelljs": "^0.5.3"
},
"devDependencies": {
"babel": "^4.7.16",
"babel-tape-runner": "^1.0.0",
"jshint": "^2.5.10",
"tap-spec": "^2.1.1",
"tape": "^3.0.3"
},
"scripts": {
"build": "babel src --out-dir dist",
"lint": "jshint src",
"prepublish": "npm run build",
"pretest": "babel-node src/generate-features.js",
"test": "npm run lint && babel-tape-runner test/*.js | tap-spec",
"postinstall": "node generator.js"
}
}