-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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": "svelte-fsm",
"version": "1.2.0",
"description": "Tiny (<1kb), expressive, Svelte-optimized Finite State Machine (FSM) library",
"type": "module",
"main": "./index.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"types": "index.d.ts",
"scripts": {
"test": "npm run test:units && npm run test:types",
"test:units": "mocha",
"test:types": "tsc --noEmit --target es6 test/*.ts"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.14.4"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/kenkunz/svelte-fsm.git"
},
"keywords": [
"svelte",
"fsm",
"finite",
"state",
"machine"
],
"author": "Ken Kunz",
"license": "MIT",
"bugs": {
"url": "https://github.com/kenkunz/svelte-fsm/issues"
},
"homepage": "https://github.com/kenkunz/svelte-fsm#README",
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3",
"sinon": "^12.0.1",
"typescript": "^4.5.2"
}
}