-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
64 lines (64 loc) · 1.42 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
62
63
64
{
"name": "onelang",
"version": "0.0.7",
"description": "OneLang transpiler framework core",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"author": {
"name": "Koczka Tamás",
"email": "koczkatamas@gmail.com",
"url": "https://kt.gy/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onelang/OneLang.git"
},
"keywords": [
"onelang",
"transpiler",
"source-to-source",
"programming-language"
],
"bugs": {
"url": "https://github.com/onelang/OneLang/issues"
},
"homepage": "https://onelang.io",
"files": [
"langs",
"lib",
"packages"
],
"directories": {},
"scripts": {
"build": "tsc -b . build",
"pretest": "tsc -b . test",
"test": "npx mocha",
"bundle": "node build/bundle-packages.js",
"prepublishOnly": "npm run build",
"release": "release-it"
},
"dependencies": {
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@types/ansi-colors": "^3.2.2",
"@types/chai": "^4.2.8",
"@types/diff": "^4.0.2",
"@types/js-yaml": "^3.12.2",
"@types/mocha": "^7.0.1",
"@types/node": "^14.14.10",
"diff": "^4.0.2",
"mkdirp": "^1.0.4",
"mocha": "^7.2.0",
"module-alias": "^2.2.2",
"release-it": "^14.0.2",
"request": "^2.88.0",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
},
"_moduleAliases": {
"@one": "lib"
}
}