-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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": "@devnilson/fisima",
"version": "0.0.1",
"description": "Finite State Machine",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json --coverage",
"test:watch": "jest --config jestconfig.json --coverage --watchAll"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Devnilson/fisima.git"
},
"keywords": [
"FSM",
"Finite",
"State",
"Machine"
],
"author": "Devnilson",
"license": "MIT",
"bugs": {
"url": "https://github.com/Devnilson/fisima/issues"
},
"homepage": "https://github.com/Devnilson/fisima#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^26.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3",
"yarn": "1.22.4"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}