-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 997 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
38
39
40
{
"name": "polyfills-db",
"description": "browser feature database",
"version": "3.0.0",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": "polyfills/db",
"dependencies": {
"polyfills-feature": "1"
},
"devDependencies": {
"istanbul": "0",
"mocha": "2",
"polyfill-ua": "^1.0.1",
"request": "^2.45.0",
"standardberry": "*"
},
"scripts": {
"lint": "standardberry lib/*.js",
"test": "mocha --bail --timeout 10s",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --timeout 10s",
"test-travis": "npm run lint && istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot --timeout 10s"
},
"keywords": [
"database",
"db",
"polyfills",
"features",
"detects"
],
"main": "lib/polyfills.js",
"files": [
"lib"
]
}