-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "object-descriptors",
"version": "0.2.1",
"description": "A pretty well typed `Object.getOwnPropertyDescriptors` polyfill.",
"cdn": "dist/index.umd.min.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.min.js",
"umd:main": "dist/index.umd.min.js",
"files": [
"dist/",
"types/"
],
"scripts": {
"prepublishOnly": "yarn test && yarn build",
"test": "jest",
"build": "bili"
},
"keywords": [
"Object.getOwnPropertyDescriptors",
"descriptor",
"property descriptor",
"property-descriptor",
"property-descriptors",
"properties",
"property",
"own-keys",
"keys",
"object",
"ES8",
"ES2017",
"shim",
"polyfill",
"getOwnPropertyDescriptor",
"es-shim API"
],
"repository": {
"type": "git",
"url": "git+https://github.com/VitorLuizC/object-descriptors.git"
},
"author": {
"url": "https://vitorluizc.github.io/",
"name": "Vitor Luiz Cavalcanti",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/VitorLuizC/object-descriptors/issues"
},
"homepage": "https://github.com/VitorLuizC/object-descriptors#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"bili": "^5.0.5",
"jest": "^27.1.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}