-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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": "downfall",
"version": "0.1.3",
"description": "Inverted React event flow library",
"main": "dist/downfall.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && babel -d dist/ src/ --ignore spec.js,test.js",
"example-click": "parcel -d example/dist/click example/click/index.html",
"example-ticks": "parcel -d example/dist/ticks example/ticks/index.html",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/samsch/downfall.git"
},
"files": [
"dist",
"src"
],
"keywords": [
"React",
"State",
"functional",
"observable",
"events"
],
"author": "Samuel Scheiderich",
"license": "0BSD",
"bugs": {
"url": "https://github.com/samsch/downfall/issues"
},
"homepage": "https://github.com/samsch/downfall#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.8.2",
"parcel-bundler": "^1.8.1",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"dependencies": {
"kefir": "^3.8.3",
"memoize-one": "^4.0.0",
"prop-types": "^15.6.2"
}
}