-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 981 Bytes
/
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
{
"name": "icx-compiler",
"version": "2.1.7",
"description": "Compiler icX to ic10 ",
"main": "index.js",
"scripts": {
"build": "babel src -d src",
"whatch": "tsc -w",
"test": "node test.js",
"jest": "jest tests/jest.js",
"debug": "nodemon -w ./ -e js,icX jest"
},
"transform": {
"\\.js$": "<rootDir>/node_modules/babel-jest"
},
"homepage": "https://github.com/Stationeers-ic/icX",
"keywords": [
"ic10",
"icX",
"compiller"
],
"files": [
"src/*",
"index.ts",
"index.d.ts",
"index.js",
"index.js.map",
"test.ts"
],
"exclude": [
".idea",
".vscode",
".ic10",
".icX",
"tests"
],
"module": "commonjs",
"author": "Traineratwot",
"license": "MIT",
"dependencies": {
"@scicave/math-parser": "^5.1.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.15.11",
"chalk": "4.1.2",
"ic10": "^2.1.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}