1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "has-symbols",
|
3 |
|
|
"version": "1.0.1",
|
4 |
|
|
"author": {
|
5 |
|
|
"name": "Jordan Harband",
|
6 |
|
|
"email": "ljharb@gmail.com",
|
7 |
|
|
"url": "http://ljharb.codes"
|
8 |
|
|
},
|
9 |
|
|
"funding": {
|
10 |
|
|
"url": "https://github.com/sponsors/ljharb"
|
11 |
|
|
},
|
12 |
|
|
"contributors": [
|
13 |
|
|
{
|
14 |
|
|
"name": "Jordan Harband",
|
15 |
|
|
"email": "ljharb@gmail.com",
|
16 |
|
|
"url": "http://ljharb.codes"
|
17 |
|
|
}
|
18 |
|
|
],
|
19 |
|
|
"description": "Determine if the JS environment has Symbol support. Supports spec, or shams.",
|
20 |
|
|
"license": "MIT",
|
21 |
|
|
"main": "index.js",
|
22 |
|
|
"scripts": {
|
23 |
|
|
"prepublish": "safe-publish-latest",
|
24 |
|
|
"pretest": "npm run --silent lint",
|
25 |
|
|
"test": "npm run --silent tests-only",
|
26 |
|
|
"posttest": "npx aud",
|
27 |
|
|
"tests-only": "npm run --silent test:stock && npm run --silent test:staging && npm run --silent test:shams",
|
28 |
|
|
"test:stock": "node test",
|
29 |
|
|
"test:staging": "node --harmony --es-staging test",
|
30 |
|
|
"test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs",
|
31 |
|
|
"test:shams:corejs": "node test/shams/core-js.js",
|
32 |
|
|
"test:shams:getownpropertysymbols": "node test/shams/get-own-property-symbols.js",
|
33 |
|
|
"lint": "eslint *.js",
|
34 |
|
|
"version": "auto-changelog && git add CHANGELOG.md",
|
35 |
|
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
36 |
|
|
},
|
37 |
|
|
"repository": {
|
38 |
|
|
"type": "git",
|
39 |
|
|
"url": "git://github.com/ljharb/has-symbols.git"
|
40 |
|
|
},
|
41 |
|
|
"keywords": [
|
42 |
|
|
"Symbol",
|
43 |
|
|
"symbols",
|
44 |
|
|
"typeof",
|
45 |
|
|
"sham",
|
46 |
|
|
"polyfill",
|
47 |
|
|
"native",
|
48 |
|
|
"core-js",
|
49 |
|
|
"ES6"
|
50 |
|
|
],
|
51 |
|
|
"dependencies": {},
|
52 |
|
|
"devDependencies": {
|
53 |
|
|
"@ljharb/eslint-config": "^15.0.1",
|
54 |
|
|
"auto-changelog": "^1.16.2",
|
55 |
|
|
"core-js": "^2.6.10",
|
56 |
|
|
"eslint": "^6.6.0",
|
57 |
|
|
"get-own-property-symbols": "^0.9.4",
|
58 |
|
|
"safe-publish-latest": "^1.1.4",
|
59 |
|
|
"tape": "^4.11.0"
|
60 |
|
|
},
|
61 |
|
|
"testling": {
|
62 |
|
|
"files": "test/index.js",
|
63 |
|
|
"browsers": [
|
64 |
|
|
"iexplore/6.0..latest",
|
65 |
|
|
"firefox/3.0..6.0",
|
66 |
|
|
"firefox/15.0..latest",
|
67 |
|
|
"firefox/nightly",
|
68 |
|
|
"chrome/4.0..10.0",
|
69 |
|
|
"chrome/20.0..latest",
|
70 |
|
|
"chrome/canary",
|
71 |
|
|
"opera/10.0..latest",
|
72 |
|
|
"opera/next",
|
73 |
|
|
"safari/4.0..latest",
|
74 |
|
|
"ipad/6.0..latest",
|
75 |
|
|
"iphone/6.0..latest",
|
76 |
|
|
"android-browser/4.2"
|
77 |
|
|
]
|
78 |
|
|
},
|
79 |
|
|
"engines": {
|
80 |
|
|
"node": ">= 0.4"
|
81 |
|
|
},
|
82 |
|
|
"auto-changelog": {
|
83 |
|
|
"output": "CHANGELOG.md",
|
84 |
|
|
"template": "keepachangelog",
|
85 |
|
|
"unreleased": false,
|
86 |
|
|
"commitLimit": false,
|
87 |
|
|
"backfillLimit": false
|
88 |
|
|
}
|
89 |
|
|
}
|