-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.93 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
73
74
{
"name": "praxis",
"version": "0.1.3",
"description": "Coop-in-a-Box action delegation system",
"main": "lib/index.js",
"browser": "lib/client.js",
"repository": {
"type": "git",
"url": "https://github.com/coopinabox/praxis"
},
"author": "",
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/coopinabox/praxis/issues"
},
"dependencies": {
"react": "^0.9.0",
"backbone": "^1.1.2",
"jquery": "^2.1.0",
"envify": "^1.2.1",
"feathers": "^0.3.1",
"ciab-header-component": "^0.1.0",
"ciab-utils": "0.0.1",
"ciab-actions-api": "^0.1.1",
"ciab-actions": "^0.1.2",
"ecstatic": "^0.4.13",
"brfs": "^1.0.0",
"ciab-bookshelf": "^0.1.0"
},
"devDependencies": {
"watchify": "^0.6.1",
"vinyl-source-stream": "^0.1.1",
"tiny-lr": "0.0.5",
"gulp-livereload": "^1.2.0",
"gulp": "^3.5.5",
"browserify": "^3.32.0",
"gulp-less": "^1.2.2",
"chai": "^1.9.0",
"mocha": "^1.17.1",
"nodemon": "^1.0.15",
"reactify": "^0.9.1",
"npm-release": "0.0.4-3"
},
"browserify": {
"transform": [
"brfs",
"reactify"
]
},
"testling": {
"files": "test/client.js",
"harness": "mocha",
"browsers": [
"ie/9..latest",
"firefox/17..nightly",
"chrome/23..canary",
"opera/15..next",
"safari/6..latest",
"iphone/6",
"ipad/6",
"android-browser/4.2"
]
},
"scripts": {
"migrate": "bin/migrate",
"test-server": "(export NODE_ENV=test; npm run migrate && mocha -R spec -t 10s test/{server,both}/*.js)",
"test-client": "(export NODE_ENV=test; testling)",
"test": "npm run test-server && (if [ -z \"$TRAVIS\" ]; then npm run test-client; fi)",
"lint": "jshint src ;true",
"release": "npm-release patch -m \"version++\"",
"develop": "(export NODE_ENV=development; npm run migrate && (gulp develop & nodemon .))",
"start": "npm run migrate && gulp && node ."
}
}