-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@urbn/state-machine",
"version": "0.5.0",
"description": "A small Javascript Promise-based Finite State Machine implementation",
"author": "[email protected]",
"license": "MIT",
"main": "src/state-machine.js",
"types": "@types/state-machine.d.ts",
"files": [
"@types/*.ts",
"src/*.js",
"LICENSE.md",
"package.json",
"package-lock.json",
"README.md"
],
"homepage": "https://github.com/brophdawg11/state-machine#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/brophdawg11/state-machine.git"
},
"bugs": {
"url": "https://github.com/brophdawg11/state-machine/issues"
},
"keywords": [
"js",
"fsm",
"finite",
"state",
"machine"
],
"scripts": {
"lint": "eslint .",
"prepare": "husky install",
"publish": "npm run lint && npm run test",
"test": "jest --testEnvironment jsdom --collectCoverage false && jest --testEnvironment node"
},
"devDependencies": {
"eslint": "8.6.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "25.3.4",
"husky": "7.0.4",
"jest": "27.4.7"
}
}