-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
package.json
47 lines (47 loc) Β· 1.29 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
{
"name": "@yarnpkg/parsers",
"version": "3.0.2",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"exports": {
".": "./sources/index.ts",
"./package.json": "./package.json"
},
"dependencies": {
"js-yaml": "^3.10.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/js-yaml": "^3.11.1",
"pegjs": "^0.10.0"
},
"scripts": {
"grammar:shell": "run pegjs -o sources/grammars/shell.js sources/grammars/shell.pegjs",
"grammar:resolution": "run pegjs -o sources/grammars/resolution.js sources/grammars/resolution.pegjs",
"grammar:syml": "run pegjs -o sources/grammars/syml.js sources/grammars/syml.pegjs",
"grammar:all": "run grammar:shell & run grammar:resolution & run grammar:syml &",
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\"",
"release": "yarn npm publish",
"test:parsers": "run test:unit packages/yarnpkg-parsers"
},
"publishConfig": {
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
}
},
"files": [
"/lib/**/*"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git",
"directory": "packages/yarnpkg-parsers"
},
"engines": {
"node": ">=18.12.0"
},
"stableVersion": "3.0.2"
}