-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
{
"name": "@alt-javascript/lang",
"version": "1.0.4",
"description": "Language feature detection utilities for ECMAScript 6 and beyond.",
"author": "",
"keywords": [
"es6",
"es7",
"es2015",
"es2016",
"es2017",
"es2018",
"es2019",
"es2020",
"ecmascript",
"feature",
"detect",
"check",
"test",
"syntax",
"polyfill",
"builtin",
"dom",
"localization"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/alt-javascript/lang#readme",
"repository": {
"type": "git",
"url": "https://github.com/alt-javascript/lang"
},
"main": "index.js",
"type": "commonjs",
"scripts": {
"lint": "npx eslint \"./*.js\" --fix",
"test": "npm run test:unit",
"test:unit": "npm run test:tdd",
"test:tdd": "mocha --require test/fixtures/index.js",
"coverage": "npm run c8",
"mocha": "mocha --require test/fixtures/index.js",
"c8": "c8 --reporter=json-summary --reporter=text-summary --reporter=lcov npm run test",
"build": "webpack --config .webpack.config.js"
},
"license": "MIT",
"dependencies": {
"es-feature-detection": "3.0.0",
"feature-detect-es6": "^1.5.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"c8": "^7.11.0",
"chai": "^4.3.4",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-cucumber": "^1.4.0",
"eslint-plugin-import": "^2.23.4",
"mocha": "^9.0.2",
"npx": "^10.2.2",
"run-script-os": "^1.1.6",
"webpack": "^5.41.0",
"webpack-cli": "^4.7.2"
}
}