-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
65
66
67
68
69
{
"name": "@chainner/navi",
"version": "0.8.0",
"description": "A set-theory based type system used in chaiNNer",
"main": "./dist/main.js",
"module": "./dist/module.mjs",
"types": "./dist/main.d.ts",
"exports": "./dist/main.js",
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist/ && rollup -c",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext \".js,.ts\"",
"lint:fix": "eslint . --fix --ext \".js,.ts\"",
"lint:ci": "eslint . --ext \".js,.ts\" --max-warnings 0",
"test": "jest",
"test:update": "jest -u",
"antlr4": "npx ts-node ./scripts/antlr4.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaiNNer-org/Navi.git"
},
"keywords": [
"chaiNNer"
],
"author": "Michael Schmidt",
"license": "MIT",
"bugs": {
"url": "https://github.com/chaiNNer-org/Navi/issues"
},
"homepage": "https://github.com/chaiNNer-org/Navi#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-run": "^3.0.2",
"@rollup/plugin-typescript": "^11.1.6",
"@types/antlr4": "^4.7.3",
"@types/jest": "^29.1.1",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"antlr4": "^4.13.1-patch-1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-exports": "^0.7.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.1.2",
"nodejs-file-downloader": "^4.10.2",
"prettier": "^2.7.1",
"rimraf": "^4.1.2",
"rollup": "^4.14.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}