-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "simple-state-management",
"description": "Simple state management library",
"version": "1.0.6",
"author": "muukojima",
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/MuuKojima/simple-state-management.git"
},
"keywords": [
"flux",
"state",
"machine",
"state machine",
"statemachine",
"finite"
],
"scripts": {
"type-check": "tsc --noEmit",
"clean": "rm -rf lib",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run lint && npm run clean && npm run build:types && npm run build:js",
"lint": "eslint . --ext .ts"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.6.0",
"rollup": "^2.23.1",
"typescript": "^4.0.0"
}
}