-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "array-unique-proposal",
"version": "0.3.4",
"description": "ECMAScript proposal for Deduplicating method of Array",
"keywords": [
"JavaScript",
"ECMAScript",
"array",
"unique",
"deduplicate",
"proposal",
"polyfill"
],
"author": "shiy2008@gmail.com",
"license": "GPL-3.0",
"homepage": "https://github.com/tc39/proposal-array-unique#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-array-unique.git"
},
"bugs": {
"url": "https://github.com/tc39/proposal-array-unique/issues"
},
"source": "polyfill/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"test": "lint-staged && jest",
"build": "rm -rf dist/ && tsc",
"prepublishOnly": "npm test && npm run build"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"dist/.+"
]
}
}