-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "n-lang",
"version": "1.3.2",
"description": "A programming language for N Building.",
"main": "src/index.js",
"scripts": {
"build:ne": "npx nearleyc src/grammar/n-lang.ne -o src/grammar/n-lang.grammar.ts",
"build:ts": "tsc --build --pretty",
"build:lines": "node scripts/js-to-lines.js",
"lint": "eslint . --ext .ts --ignore-pattern *.grammar.ts",
"test": "ts-mocha test/**/*.ts --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nbuilding/N-lang.git"
},
"author": "N Building",
"license": "MIT",
"bugs": {
"url": "https://github.com/nbuilding/N-lang/issues"
},
"homepage": "https://github.com/nbuilding/N-lang#readme",
"dependencies": {
"colors": "^1.4.0",
"nearley": "^2.20.1"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/chai": "^4.2.15",
"@types/minimist": "^1.2.1",
"@types/mocha": "^8.2.1",
"@types/moo": "^0.5.3",
"@types/nearley": "^2.11.1",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"chai": "^4.3.3",
"eslint": "^7.22.0",
"minimist": "^1.2.5",
"mocha": "^8.3.0",
"prettier": "^2.3.2",
"ts-mocha": "^8.0.0",
"typescript": "^4.2.3"
}
}