-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "frylord",
"version": "0.7.4",
"description": "Irken plugin exposing workspaces",
"main": "index.js",
"files": [
"actions",
"creators",
"methods",
"middleware",
"reducers",
"temp-methods",
"utils",
"constants.js",
"create-store.js",
"filer.js",
"index.js",
"level.js",
"status-constants.js",
"LICENSE"
],
"scripts": {
"test": "npm run lint && zuul ./src/**/__tests__/**/*.js --local --open --test",
"ci": "npm run lint && zuul ./src/**/__tests__/**/*.js --electron --test",
"lint": "eslint ./src/",
"build": "babel ./src/ --out-dir ./",
"example": "webpack-dev-server",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/iceddev/frylord"
},
"keywords": [
"irken",
"workspaces",
"fs"
],
"author": "Blaine Bublitz <[email protected]> (http://iceddev.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iceddev/frylord/issues"
},
"homepage": "https://github.com/iceddev/frylord",
"devDependencies": {
"@phated/eslint-config-iceddev": "^0.1.1",
"babel": "^5.6.23",
"babel-core": "^5.8.20",
"babel-loader": "^5.3.2",
"eslint": "^1.2.0",
"eslint-plugin-mocha": "^0.5.1",
"eslint-plugin-react": "^3.2.3",
"expect": "^1.8.0",
"flux-standard-action": "^0.6.0",
"isparta-loader": "^0.2.0",
"node-libs-browser": "^0.5.2",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1",
"zuul": "^3.3.0",
"zuul-builder-webpack": "^1.1.0"
},
"dependencies": {
"@phated/filer": "^0.2.5",
"level-js": "^2.2.1",
"levelup": "^0.19.0",
"lodash": "^3.10.0",
"redux": "^1.0.0-rc",
"redux-promise": "^0.5.0",
"when": "^3.7.2"
}
}