-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.27 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "tabula",
"version": "1.0.0",
"description": "IIIF slide shows via github.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"prebuild": "rm -rf public && mkdir public",
"build": "NODE_ENV=production webpack",
"deploy": "surge -p public -d tabula.surge.sh",
"yolo": "npm run build && npm run deploy",
"test": "babel-node node_modules/argg src/models/presentation/test/index.spec.js",
"quiz": "webpack src/models/presentation/test/index.spec.js public/tabula.tests.js | ./node_modules/tape/bin/tape-run/run.js",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/sdellis/tabula"
},
"keywords": [
"iiif",
"webapp",
"ampersand",
"backbone",
"slideshow",
"es6",
"tape"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"ampersand-app": "^1.0.4",
"ampersand-collection": "^1.5.0",
"ampersand-model": "^6.0.2",
"ampersand-react-mixin": "^1.0.1",
"ampersand-rest-collection": "^5.0.0",
"ampersand-router": "^3.0.2",
"ampersand-sync-with-promise": "^3.0.0",
"autoprefixer-stylus": "^0.5.0",
"babel": "^5.1.13",
"babel-core": "^5.1.13",
"babel-loader": "^5.0.0",
"babel-polyfill": "^6.3.14",
"css-loader": "^0.12.0",
"file-loader": "^0.8.1",
"hjs-webpack": "^2.0.1",
"local-links": "^1.4.0",
"manifesto.js": "^0.1.17",
"node-uuid": "^1.4.7",
"octicons": "^3.1.0",
"page-label-generator": "0.0.1",
"qs": "^6.0.0",
"react": "^0.13.2",
"react-hot-loader": "^1.2.5",
"standard": "^5.4.1",
"style-loader": "^0.12.1",
"stylus-loader": "^1.1.0",
"surge": "^0.11.1",
"url-loader": "^0.5.5",
"webpack": "^1.8.11",
"webpack-dev-server": "^1.8.2",
"xhr": "^2.2.0",
"yeticss": "^6.0.5"
},
"standard": {
"ignore": [
"public/*"
]
},
"devDependencies": {
"argg": "0.0.2",
"istanbul-instrumenter-loader": "^0.1.3",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-phantomjs-launcher": "^0.2.1",
"karma-tap": "^1.0.3",
"karma-webpack": "^1.7.0",
"phantomjs": "git://github.com/just-boris/phantomjs",
"tape": "^4.2.2",
"tape-run": "^2.1.0"
}
}