forked from thepeacockproject/StateMachineParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@peacockproject/statemachine-parser",
"version": "5.9.1",
"description": "IOI state machine conditional parser.",
"main": "build/index-cjs.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://thepeacockproject.org",
"sideEffects": false,
"engines": {
"node": ">=16.3.0"
},
"directories": {
"test": "tests",
"lib": "build",
"doc": "docs"
},
"files": [
"README.md",
"build/*",
"LICENSE",
"src"
],
"keywords": [
"ioi",
"state",
"machines",
"glacier",
"modding"
],
"repository": {
"type": "git",
"url": "https://github.com/thepeacockproject/StateMachineParser"
},
"author": "The Peacock Project <[email protected]> (https://thepeacockproject.org)",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"exports": {
"import": "./build/index.js",
"require": "./build/index-cjs.js"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.3",
"c8": "^7.13.0",
"c8-as-nyc": "^1.1.11",
"call-spy": "^3.0.0",
"esbuild": "^0.17.18",
"esbuild-register": "^3.4.2",
"get-package-type": "^0.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"scripts": {
"prettier": "prettier --write \"**/*.{ts,md,json,js,cjs}\"",
"build": "tsc && node build.mjs",
"prepack": "yarn build",
"test": "c8 mocha --require esbuild-register --extension js,ts,cjs,mjs tests"
},
"prettier": {
"semi": false,
"tabWidth": 4
},
"publishConfig": {
"access": "public"
}
}