-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"name": "questmark-yarn",
"version": "0.0.7",
"description": "",
"main": "dist/node/index.js",
"types": "dist/node/index.d.js",
"exports": {
".": {
"import": "./dist/node/index.js",
"require": "./dist/browser/index.js"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npx cross-env rm -rf dist/ && tsc -p tsconfig.json && npm run wp_build",
"test": "ts-node src/test.ts",
"start": "ts-node src/cli.ts",
"wp_build": "webpack build --config webpack.config.js",
"fix_antlr_grammar_ts": "ts-node src/util/fix_antlr_grammar_ts.ts",
"antlr4ts-yarnspinnerlexer": "antlr4ts -visitor grammars/YarnSpinnerLexer.g4",
"antlr4ts-yarnspinnerparser": "antlr4ts -visitor grammars/YarnSpinnerParser.g4",
"antlr4ts": "npm run antlr4ts-yarnspinnerlexer && npm run antlr4ts-yarnspinnerparser && npm run fix_antlr_grammar_ts"
},
"bin": {
"questmark": "./bin/questmark-yarn.mjs"
},
"author": "Joris van de Donk <jorisvddonk@gmail.com>",
"license": "MIT",
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4",
"node-fetch": "^2.6.6",
"tzo": "^1.0.19",
"unist-builder": "^2.0.3"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "^17.0.5",
"antlr4ts-cli": "^0.5.0-alpha.4",
"copy-webpack-plugin": "^9.0.1",
"glob": "^7.2.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0"
}
}