-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
{
"name": "faste",
"version": "2.0.0",
"description": "Block-based, Finite State Machine, made simple",
"main": "dist/es5/index.js",
"types": "dist/es5/index.d.ts",
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "lib-builder dev",
"test": "jest",
"test:ci": "jest --runInBand --coverage",
"build": "lib-builder build && yarn size:report",
"release": "yarn build && yarn test",
"size": "size-limit",
"size:report": "size-limit --json > .size.json",
"lint": "lib-builder lint",
"format": "lib-builder format",
"update": "lib-builder update",
"prepack": "yarn build && yarn changelog",
"prepare": "husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:rewrite": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"repository": "git+https://github.com/theKashey/faste.git",
"bugs": {
"url": "https://github.com/theKashey/faste/issues"
},
"homepage": "https://github.com/theKashey/faste#readme",
"author": "Anton Korzunov (thekashey@gmail.com)",
"license": "MIT",
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.2",
"@theuiteam/lib-builder": "^0.2.3",
"@types/node": "10.3.4"
},
"engines": {
"node": ">=10"
},
"keywords": [
"state machine",
"state management"
],
"dependencies": {
"tslib": "^1.9.3"
},
"module:es2019": "dist/es2019/index.js",
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{js,css,json,md}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}