-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
73 lines (73 loc) · 1.89 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
{
"version": "0.9.6",
"license": "MIT",
"name": "get-own-property-symbols",
"description": "",
"homepage": "https://github.com/es-shims/get-own-property-symbols",
"keywords": [
"Object",
"getOwnPropertySymbols",
"ES6",
"Symbol",
"polyfill"
],
"author": {
"name": "Andrea Giammarchi",
"web": "https://webreflection.blogspot.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/es-shims/get-own-property-symbols.git"
},
"main": "./build/get-own-property-symbols.node.js",
"scripts": {
"prepack": "npmignore --auto --commentLines=autogenerated",
"prepublishOnly": "safe-publish-latest && npm run build",
"prepublish": "not-in-publish || npm run prepublishOnly",
"prelint": "npm run build",
"lint": "eslint src build/*.max.js",
"postlint": "tsc -p . && attw -P",
"clean": "rimraf build",
"web": "tiny-cdn run",
"prebuild": "npm run clean && mkdirp build",
"build": "make",
"pretest": "npm run lint",
"test": "npm run tests-only",
"posttest": "npx npm@'>=10.2' audit --production",
"pretests-only": "npm run build",
"tests-only": "nyc tape 'test/**/*.js'"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@ljharb/eslint-config": "^21.1.1",
"@ljharb/tsconfig": "^0.2.0",
"@types/tape": "^5.6.5",
"es5-shim": "^4.6.7",
"es6-shim": "^0.35.8",
"eslint": "=8.8.0",
"in-publish": "^2.0.1",
"markdown": "^0.5.0",
"mkdirp": "^0.5.6",
"npmignore": "^0.3.1",
"nyc": "^10.3.2",
"rimraf": "^2.7.1",
"safe-publish-latest": "^2.0.0",
"tape": "^5.9.0",
"tiny-cdn": "^0.7.0",
"typescript": "next",
"uglify-js": "^2.8.29"
},
"publishConfig": {
"ignore": [
"!build",
"build/*.amd.js",
"index.html",
"Makefile",
"template/",
".github/workflows"
]
},
"engines": {
"node": ">= 0.4"
}
}