-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.2 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
{
"name": "es-feature-detection",
"version": "3.0.1",
"description": "ECMAScript feature and API detection",
"main": "index.js",
"sideEffects": false,
"scripts": {
"test": "npm run build:tests && jest",
"test:coverage": "npm t -- --collectCoverage",
"test:nobuild": "jest",
"build": "npm run build:index && npm run compile",
"build:index": "./bin/build-index.sh",
"build:tests": "./bin/build-tests.sh",
"compile": "tsc -p ./src/tsconfig.json",
"typecheck": "tsc -p ./tsconfig.build.json --noEmit",
"clean": "npm run clean:compile && npm run clean:index && npm run clean:tests",
"clean:empty": "rmdir $(find -maxdepth 1 -path './utils' -o -path './dom' -o -path './localization' -o -path './syntax' -o -path './builtins' -type d -empty)",
"clean:compile": "tsc -b src --clean && npm run clean:empty",
"clean:index": "./bin/clean-index.sh",
"clean:tests": "./bin/clean-tests.sh",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"lint": "eslint **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/Tokimon/es-feature-detection.git"
},
"keywords": [
"es6",
"es7",
"es2015",
"es2016",
"es2017",
"es2018",
"es2019",
"es2020",
"ecmascript",
"feature",
"detect",
"check",
"test",
"syntax",
"polyfill",
"builtin",
"dom",
"localization"
],
"author": "Toke Voltelen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tokimon/es-feature-detection/issues"
},
"homepage": "https://github.com/Tokimon/es-feature-detection#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"coveralls": "^3.1.1",
"eslint": "^8.4.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}