-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 963 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
34
{
"name": "@prettier/is-es5-identifier-name",
"version": "0.2.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": "./dist/index.js",
"packageManager": "[email protected]",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"devDependencies": {
"@unicode/unicode-9.0.0": "1.3.1",
"esbuild": "0.15.12",
"esutils": "2.0.3",
"prettier": "3.0.0",
"regenerate": "1.4.2"
},
"scripts": {
"build": "node scripts/build.js",
"test": "yarn build && node --test",
"lint": "prettier . --check",
"format": "prettier . --write",
"release": "yarn build && np --yolo --no-yarn"
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}