-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 904 Bytes
/
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
{
"name": "is-es5-identifier-name",
"version": "1.0.0",
"description": "Check if provided string is an `IdentifierName` as specified in ECMA262 edition 5.1 section 7.6.",
"repository": "prettier/is-es5-identifier-name",
"author": "fisker Cheung <[email protected]>",
"license": "MIT",
"type": "module",
"exports": "./index.js",
"packageManager": "[email protected]",
"files": [
"index.js",
"index.d.ts"
],
"devDependencies": {
"@unicode/unicode-9.0.0": "1.6.5",
"prettier": "3.5.3",
"regenerate": "1.4.2",
"release-it": "18.1.2"
},
"scripts": {
"build": "node scripts/build.js",
"test": "yarn build && node --test",
"lint": "prettier . --check",
"fix": "prettier . --write",
"release": "yarn build && release-it"
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}