-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "Text2Frame-MV",
"version": "2.2.1",
"description": "Simple compiler to convert text to event.",
"main": "Text2Frame.js",
"types": "esm.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --reporter-options maxDiffSize=100000 --inline-diffs test/test_json_eq.js",
"test_text2frame": "mocha --inline-diffs test/test_json_eq.js",
"test_frame2text": "mocha --reporter-options maxDiffSize=100000 --inline-diffs test/test_frame2text.js",
"lint": "eslint --max-warnings=0 Text2Frame.js Frame2Text.js",
"debug": "node Text2Frame.js",
"build": "vite build"
},
"repository": {
"type": "git",
"url": "[email protected]:yktsr/Text2Frame-MV.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"chai": "^4.2.0",
"commander": ">=6.0.0",
"eslint": ">=7.6.0",
"eslint-config-standard": "^17.1.0",
"mocha": ">=10.2.0",
"sinon": ">=9.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"vite": "^5.0.11"
}
}