forked from jamiebuilds/unstated-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "unstated-retro",
"version": "0.0.1",
"description": "615 bytes to bridge the gap from unstated to unstated-next",
"source": "src/unstated-retro.tsx",
"main": "dist/unstated-retro.js",
"module": "dist/unstated-retro.mjs",
"unpkg": "dist/unstated-retro.umd.js",
"types": "dist/unstated-retro.d.ts",
"amdName": "UnstatedRetro",
"sideEffects": false,
"scripts": {
"format": "prettier --write '**'",
"example": "parcel example/index.html --out-dir example/dist",
"build": "rm -rf dist && microbundle --external react,unstated --globals react=React,unstated=Unstated --strict --no-compress",
"test": "echo \"No test specified\""
},
"keywords": [],
"author": "saasquatch",
"license": "MIT",
"peerDependencies": {
"unstated": "^2.0.0",
"react": "^16.8.6"
},
"devDependencies": {
"@types/react": "^16.8.15",
"@types/react-dom": "^16.8.4",
"ava": "^1.4.1",
"husky": "^2.1.0",
"lint-staged": "^8.1.5",
"microbundle": "^0.11.0",
"np": "^5.1.1",
"parcel": "^1.12.3",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"prettier --write",
"git add"
]
},
"dependencies": {
"unstated": "^2.1.1"
}
}