-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.48 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": "string.prototype.codepointat",
"version": "1.0.1",
"description": "A robust & optimized `String.prototype.codePointAt` polyfill, based on the ECMAScript 6 specification.",
"homepage": "https://mths.be/codepointat",
"main": "index.js",
"exports": {
".": "./index.js",
"./auto": "./auto.js",
"./polyfill": "./polyfill.js",
"./implementation": "./implementation.js",
"./shim": "./shim.js",
"./package.json": "./package.json"
},
"keywords": [
"string",
"unicode",
"es6",
"ecmascript",
"polyfill"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/String.prototype.codePointAt.git"
},
"bugs": "https://github.com/mathiasbynens/String.prototype.codePointAt/issues",
"scripts": {
"lint": "eslint --ext=js,mjs .",
"postlint": "es-shim-api --bound",
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "tape 'tests/*.js'",
"posttest": "npx npm@'>=10.2' audit --production"
},
"dependencies": {
"call-bind": "^1.0.7",
"es-abstract": "^1.23.3"
},
"devDependencies": {
"@es-shims/api": "^2.5.1",
"@ljharb/eslint-config": "^21.1.1",
"define-properties": "^1.2.1",
"eslint": "=8.8.0",
"function-bind": "^1.1.2",
"functions-have-names": "^1.2.3",
"has-strict-mode": "^1.0.1",
"istanbul": "^0.4.5",
"tape": "^5.9.0"
},
"directories": {
"test": "tests"
},
"engines": {
"node": ">= 0.4"
}
}