-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "caniuse-support",
"version": "1.0.4",
"description": "Query the caniuse offline database for feature support.",
"homepage": "https://github.com/wikiwi/caniuse-support",
"repository": {
"type": "git",
"url": "git+https://github.com/wikiwi/caniuse-support.git"
},
"bugs": {
"url": "https://github.com/wikiwi/caniuse-support/issues"
},
"files": [
"dist",
"lib",
"cjs"
],
"jsnext:main": "./lib/index.js",
"main": "./cjs/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"all": "yarn run lint && yarn run test && yarn run build",
"build": "gulp && webpack && cross-env BUILD_MINIFIED=true webpack",
"clean": "rm -r -f dist lib cjs coverage",
"lint": "gulp lint",
"release": "yarn version -m 'caniuse-support release %s'",
"ci:coveralls": "cat coverage/lcov.info | coveralls",
"test": "cross-env TS_NODE_FILES=true TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --opts mocha.opts",
"test:coverage": "cross-env TS_NODE_FILES=true TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' istanbul cover node_modules/.bin/_mocha -- --opts mocha.opts",
"test:watch": "yarn run test -- --watch",
"prepublishOnly": "yarn all"
},
"engines": {
"node": ">=10"
},
"keywords": [
"caniuse",
"query",
"offline"
],
"author": "Chi Vinh Le and contributors (https://github.com/wikiwi/caniuse-support/graphs/contributors)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.9",
"awesome-typescript-loader": "^5.2.0",
"cash-cat": "^0.2.0",
"cash-rm": "^0.2.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-jsonlint": "^1.3.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-yaml-validate": "^1.0.2",
"istanbul": "^0.4.5",
"merge2": "^1.4.1",
"mocha": "^7.1.2",
"ts-node": "^8.8.1",
"tslint": "^5.10.0",
"typescript": "^3.6.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"bowser": "^2.9.0",
"caniuse-lite": "^1.0.30001050",
"gulp-sourcemap": "^1.0.1"
}
}