-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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": "@ggoodman/fsm",
"version": "0.1.1",
"description": "Fully typed finite state machine for JavaScript and TypeScript",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "node ./scripts/build.js",
"test": "jest",
"posttest": "kacl lint",
"prepack": "npm run build",
"preversion": "kacl prerelease",
"version": "kacl release && git add CHANGELOG.md",
"postversion": "git push --follow-tags && gh-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ggoodman/fsm.git"
},
"keywords": [
"typed",
"fsm",
"state machine",
"statemachine"
],
"author": "Geoff Goodman",
"license": "MIT",
"bugs": {
"url": "https://github.com/ggoodman/fsm/issues"
},
"homepage": "https://github.com/ggoodman/fsm#readme",
"devDependencies": {
"esbuild": "^0.8.39",
"gh-release": "^5.0.0",
"jest": "^26.4.2",
"kacl": "^1.0.0",
"prettier": "^2.0.5",
"rollup": "^2.38.4",
"rollup-plugin-dts": "^2.0.1",
"ts-jest": "^26.3.0",
"typescript": "^4.1.3"
},
"dependencies": {
"ts-primitives": "^3.2.0"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
}
}