-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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": "bodega-store",
"version": "0.0.3",
"description": "State store for js, no boilerplate",
"keywords": [
"bodega",
"bodega-store",
"state",
"store",
"predictable",
"react"
],
"main": "dist/index.js",
"scripts": {
"build": "babel src/ --out-dir dist/",
"dev": "babel src/ --out-dir dist/ --watch",
"lint": "eslint .",
"prepare": "rm -rf ./dist && npm run build",
"test": "mocha test/*.spec.js -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geuis/bodega.git"
},
"author": "Charles Lawrence",
"license": "ISC",
"bugs": {
"url": "https://github.com/geuis/bodega/issues"
},
"homepage": "https://github.com/geuis/bodega",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-react": "^7.9.1",
"mocha": "^5.2.0",
"react": "^16.4.1"
}
}