-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "no-recoil",
"version": "0.2.0",
"description": "A state management library for React",
"main": "dist/no-recoil.js",
"module": "dist/no-recoil.m.js",
"source": "src/no-recoil.js",
"scripts": {
"format": "prettier --write src/",
"pretest": "prettier --check src/",
"test": "tape test/*.js",
"prebuild": "npm run format",
"build": "microbundle --jsx React.createElement --external react --no-compress",
"prepublishOnly": "npm run build"
},
"standard": {
"ignore": [
"dist"
]
},
"files": [
"dist",
"devtools.js",
"src/no-recoil.js"
],
"keywords": [
"preact",
"react",
"state management",
"redux"
],
"author": "Adrian Unger",
"license": "MIT",
"bugs": {
"url": "https://github.com/staydecent/no-recoil/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/staydecent/no-recoil.git"
},
"homepage": "https://github.com/staydecent/no-recoil#readme",
"devDependencies": {
"lint-staged": "10.5.3",
"microbundle": "0.13.0",
"prettier": "^2.2.1",
"tape": "5.1.1"
},
"dependencies": {}
}