-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.85 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.85 KB
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
72
{
"name": "purify-app",
"version": "1.0.0",
"description": "purify content in your browser",
"main": "index.js",
"scripts": {
"start": "node --harmony `which gulp`",
"style": "gulp style",
"test": "node --harmony `which gulp` test",
"dev": "webpack-dev-server --devtool eval --hot --progress --colors --content-base build"
},
"repository": {
"type": "git",
"url": "https://github.com/schoenflies/purify-app.git"
},
"author": "Kenny Tran, Matthew Rouke, Phoebe Li",
"license": "ISC",
"bugs": {
"url": "https://github.com/schoenflies/purify-app/issues"
},
"engines": {
"node": ">=0.12",
"iojs": ">=1.0"
},
"jest": {
"rootDir": "test/client",
"testDirectoryName": "test"
},
"homepage": "https://github.com/schoenflies/purify-app",
"dependencies": {
"babel": "^5.4.7",
"babel-runtime": "^5.4.7",
"cheerio": "^0.19.0",
"co": "^4.5.4",
"co-body": "^2.0.0",
"events": "^1.0.2",
"flux": "^2.0.3",
"koa": "^0.5.2",
"koa-common": "^1.2.0",
"koa-proxy": "^0.2.0",
"koa-router": "^5.0.1",
"node-libs-browser": "^0.5.2",
"purify-css": "^1.0.3",
"react": "^0.13.3",
"react-router": "^0.13.3",
"reflux": "^0.2.7",
"rethinkdbdash": "^2.0.11",
"superagent": "^1.2.0",
"webpack": "^1.9.10"
},
"devDependencies": {
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.3",
"chai": "^2.3.0",
"co-body": "^2.0.0",
"co-supertest": "0.0.10",
"eslint": "^0.21.2",
"eslint-plugin-react": "^2.3.0",
"gulp": "^3.8.11",
"gulp-eslint": "^0.12.0",
"gulp-exit": "0.0.2",
"gulp-jest": "^0.4.0",
"gulp-jscs": "^1.6.0",
"gulp-mdox": "0.0.2",
"gulp-mocha-co": "^0.4.1-co.3",
"gulp-nodemon": "^2.0.3",
"jest": "^0.1.40",
"jest-cli": "^0.4.5",
"supertest": "^1.0.1",
"webpack-dev-server": "^1.9.0"
}
}