-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
{
"name": "schism",
"version": "1.0.0",
"description": "Compile-To-WebAssembly Language in TypeScript",
"repository": "[email protected]:dominikrys/schism.git",
"license": "MIT",
"author": "Dominik Rys",
"main": "web/index.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "yarn run eslint . --max-warnings=0 --ignore-path .eslintignore",
"format-check": "yarn prettier . -c --ignore-path .eslintignore",
"format": "yarn prettier . -w --ignore-path .eslintignore",
"bundle": "browserify web/index.ts -p tsify | uglifyjs > web/bundle.js",
"watch": "watchify web/index.ts -p tsify -o web/bundle.js --verbose --debug",
"serve": "yarn browser-sync web --watch",
"start": "npm-run-all --parallel watch serve"
},
"dependencies": {
"@thi.ng/leb128": "^1.0.64",
"copy-to-clipboard": "^3.3.1",
"marked": "^4.0.8",
"no-darkreader": "^1.0.1",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/marked": "^4.0.1",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"browser-sync": "^2.27.7",
"browserify": "^17.0.0",
"eslint": "^7.32.0",
"gh-pages": "^3.2.3",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"tsify": "^5.0.4",
"uglify-js": "^3.14.1",
"watchify": "^4.0.0",
"yarn-run-all": "^3.1.1"
}
}