This repository has been archived by the owner on Jun 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "karyscript",
"private": false,
"version": "0.0.1005",
"description": "KaryScript Language Compiler and Infrastructures",
"main": "bin/karyscript.js",
"bin": {
"kc": "./bin/kc.js"
},
"engines": {
"node": ">= 6.0.0"
},
"directories": {
"doc": "docs"
},
"scripts": {
"compile-compiler": "tsc -p tsconfig-compiler.json",
"compile-cli": "tsc -p tsconfig-cli.json",
"tsc": "npm run compile-compiler; npm run compile-cli",
"compile-parser": "node ./node_modules/pegjs/bin/pegjs -o ./bin/parser.js ./src/compiler/grammar/grammar.pegjs",
"compile-cli-parser": "node ./node_modules/pegjs/bin/pegjs -o ./bin/arglang-parser.js ./src/cli/configs/arglang/arg-lang.pegjs",
"build": "npm run build-cli",
"build-cli": "npm run compile-cli; npm run compile-pegs; npm run pack-cli; npm run after-pack; npm link",
"build-core": "npm run compile-compiler; npm run compile-pegs; npm run pack-core; npm run after-core-pack",
"compile-pegs": "npm run compile-parser && npm run compile-cli-parser",
"test": "node ./tests/test.js",
"parser-test-drive": "node ./tests/tools/parse.js",
"test-drive-compile": "node bin/compiler.js",
"pack-cli": "webpack --config ./build/pack-full-cli.js",
"pack-core": "webpack --config ./build/pack-only-compiler.js",
"after-pack": "node ./build/after-pack.js",
"after-core-pack": "node ./build/after-pack-for-web.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karyfoundation/karyscript.git"
},
"keywords": [
"Kary",
"KaryScript",
"Kary Foundation",
"Kary",
"Comment"
],
"author": "Kary Foundation",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/karyfoundation/karyscript/issues"
},
"homepage": "https://github.com/karyfoundation/karyscript#readme",
"devDependencies": {
"pegjs": "^0.10.0",
"typescript": "*",
"webpack": "*"
},
"dependencies": {
"chalk": "^1.1.3",
"js-yaml": "^3.8.1",
"source-map": "^0.5.6"
}
}