-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "stato",
"version": "2.0.0",
"description": "Functional Reactive State Management",
"main": "lib/stato.js",
"scripts": {
"clean": "rimraf lib/",
"mkdir": "mkdirp lib/",
"eslint": "eslint src/",
"rollup": "rollup --config",
"build": "npm-run-all clean eslint mkdir rollup",
"test": "echo \"Error: no test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fknussel/stato.git"
},
"author": {
"name": "Federico Knüssel",
"email": "fknussel@gmail.com"
},
"keywords": [
"stato",
"functional reactive state management",
"Bacon.js"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fknussel/stato/issues"
},
"homepage": "https://github.com/fknussel/stato#readme",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.14.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.2",
"rimraf": "^2.5.4",
"rollup": "^0.53.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^2.0.1"
},
"peerDependencies": {
"baconjs": "^1.0.1"
}
}