-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "cowf-mf",
"version": "1.0.0",
"description": "COWF Parser and CLI Tool",
"main": "dist/index.js",
"files": [
"dist",
"src",
"docs",
"LICENCE",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node --experimental-specifier-resolution=node dist/index.js samples/sample.cowf -r -p -g --",
"deleteDist": "rm -r dist",
"replit": "npm run deleteDist && npm run build; npm run start; npm run test:cowf",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:cowf": "jest --selectProjects COWF",
"test:artf": "jest --selectProjects Artf",
"docs": "typedoc --out docs src",
"test:performance": "ts-node tests/performanceTest.ts"
},
"keywords": [
"cowf",
"parser",
"cli"
],
"author": "SpcFORK",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^16.18.108",
"jest": "^27.1.5",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.2",
"typedoc": "^0.22.18",
"typescript": "^4.7.4"
},
"dependencies": {
"chubml": "^1.0.2",
"cowcst": "^1.1.30",
"python-shell": "^3.0.1",
"vm-browserify": "^1.1.2"
}
}