-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.65 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
{
"name": "upperalpha",
"version": "0.2.0",
"description": "Simple Web-IDE for AsseblyCode written in the α-Notation",
"main": "index.js",
"scripts": {
"test": "jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check --watch",
"build": "npm run build:pegjs && npm run build:types && npm run build:js && npm run build:html",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "webpack --mode=development",
"build:html": "cp -r ./src/html/* ./dist/",
"build:pegjs": "npx peggy --plugin ./node_modules/ts-pegjs/src/tspegjs --format commonjs --extra-options-file pegconfig.json -o src/js/PegParser.ts --cache src/js/grammar.pegjs",
"clean": "rm -r ./lib ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damgem/upperalpha.git"
},
"author": "Damian Gleumes",
"license": "MIT",
"bugs": {
"url": "https://github.com/damgem/upperalpha/issues"
},
"homepage": "https://github.com/damgem/upperalpha#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/codemirror": "^5.60.0",
"@types/jest": "^26.0.23",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"jest": "^27.0.5",
"mocha": "^9.0.1",
"peggy": "^1.2.0",
"pegjs": "^0.10.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"ts-pegjs": "^1.0.0",
"typescript": "^4.3.2",
"webpack": "^5.39.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"codemirror": "^5.61.1"
}
}