forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) Β· 892 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
{
"name": "@yarnpkg/parsers",
"version": "2.0.0-rc.9",
"main": "./sources/index.ts",
"dependencies": {
"js-yaml": "^3.10.0"
},
"devDependencies": {
"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",
"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",
"typings": "./lib/index.d.ts"
},
"files": [
"/lib/**/*"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git"
}
}