-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "run-effect",
"amdName": "runEffect",
"version": "0.1.0",
"description": "Declaratively run side effects only when dependencies change. Usable in any JavaScript code (but inspired by React's useEffect hook).",
"source": "src/index.js",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.umd.js",
"scripts": {
"start": "microbundle watch",
"build": "microbundle --strict",
"test": "jest",
"test:watch": "jest --watch",
"prepublish": "npm test && npm run build",
"release": "np"
},
"keywords": [
"side-effect",
"effect"
],
"author": {
"name": "Caleb Miller",
"email": "[email protected]",
"url": "https://cmiller.tech"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MilllerTime/run-effect.git"
},
"bugs": {
"url": "https://github.com/MilllerTime/run-effect/issues"
},
"homepage": "https://github.com/MilllerTime/run-effect",
"devDependencies": {
"jest": "^24.8.0",
"microbundle": "^0.11.0",
"np": "^5.0.1"
}
}