source: imaps-frontend/node_modules/has-symbols/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.6 KB
Line 
1{
2 "name": "has-symbols",
3 "version": "1.0.3",
4 "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.",
5 "main": "index.js",
6 "scripts": {
7 "prepublishOnly": "safe-publish-latest",
8 "prepublish": "not-in-publish || npm run prepublishOnly",
9 "pretest": "npm run --silent lint",
10 "test": "npm run tests-only",
11 "posttest": "aud --production",
12 "tests-only": "npm run test:stock && npm run test:staging && npm run test:shams",
13 "test:stock": "nyc node test",
14 "test:staging": "nyc node --harmony --es-staging test",
15 "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs",
16 "test:shams:corejs": "nyc node test/shams/core-js.js",
17 "test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js",
18 "lint": "eslint --ext=js,mjs .",
19 "version": "auto-changelog && git add CHANGELOG.md",
20 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
21 },
22 "repository": {
23 "type": "git",
24 "url": "git://github.com/inspect-js/has-symbols.git"
25 },
26 "keywords": [
27 "Symbol",
28 "symbols",
29 "typeof",
30 "sham",
31 "polyfill",
32 "native",
33 "core-js",
34 "ES6"
35 ],
36 "author": {
37 "name": "Jordan Harband",
38 "email": "ljharb@gmail.com",
39 "url": "http://ljharb.codes"
40 },
41 "contributors": [
42 {
43 "name": "Jordan Harband",
44 "email": "ljharb@gmail.com",
45 "url": "http://ljharb.codes"
46 }
47 ],
48 "funding": {
49 "url": "https://github.com/sponsors/ljharb"
50 },
51 "license": "MIT",
52 "bugs": {
53 "url": "https://github.com/ljharb/has-symbols/issues"
54 },
55 "homepage": "https://github.com/ljharb/has-symbols#readme",
56 "devDependencies": {
57 "@ljharb/eslint-config": "^20.2.3",
58 "aud": "^2.0.0",
59 "auto-changelog": "^2.4.0",
60 "core-js": "^2.6.12",
61 "eslint": "=8.8.0",
62 "get-own-property-symbols": "^0.9.5",
63 "nyc": "^10.3.2",
64 "safe-publish-latest": "^2.0.0",
65 "tape": "^5.5.2"
66 },
67 "testling": {
68 "files": "test/index.js",
69 "browsers": [
70 "iexplore/6.0..latest",
71 "firefox/3.0..6.0",
72 "firefox/15.0..latest",
73 "firefox/nightly",
74 "chrome/4.0..10.0",
75 "chrome/20.0..latest",
76 "chrome/canary",
77 "opera/10.0..latest",
78 "opera/next",
79 "safari/4.0..latest",
80 "ipad/6.0..latest",
81 "iphone/6.0..latest",
82 "android-browser/4.2"
83 ]
84 },
85 "engines": {
86 "node": ">= 0.4"
87 },
88 "auto-changelog": {
89 "output": "CHANGELOG.md",
90 "template": "keepachangelog",
91 "unreleased": false,
92 "commitLimit": false,
93 "backfillLimit": false,
94 "hideCredit": true
95 },
96 "greenkeeper": {
97 "ignore": [
98 "core-js"
99 ]
100 }
101}
Note: See TracBrowser for help on using the repository browser.