-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 895 Bytes
/
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
{
"name": "fsm-hoc",
"version": "0.1.0",
"description": "Higher Order Component to introduce Finite State Machine to React Components",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/becousae/fsm-hoc.git"
},
"keywords": [
"React",
"HOC",
"FSM"
],
"author": "Benjamin Cousaert <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/becousae/fsm-hoc/issues"
},
"homepage": "https://github.com/becousae/fsm-hoc#readme",
"devDependencies": {
"@types/react": "^16.0.31",
"source-map-loader": "^0.2.3",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"react": "^16.2.0",
"ts-loader": "^3.2.0"
}
}