-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.97 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
{
"name": "cache-flow-problems",
"version": "1.0.0",
"description": "Was your site loaded from cache?",
"main": "src/capture-server",
"scripts": {
"browserify-all": "npm run browserify-client && npm run browserify-bk-browser && npm run browserify-bk-server && npm run browserify-api",
"browserify-api": "browserify --standalone cacheQueryApi src/shared/cache-query.js > dist/api.js",
"browserify-bk-browser": "browserify src/client/bookmarklet-client.js > dist/bookmarklet-client.js",
"browserify-bk-server": "browserify src/client/bookmarklet-server.js > dist/bookmarklet-server.js",
"browserify-client": "browserify src/client/index.js > dist/client.js",
"build-all": "npm run build-client && npm run build-bk-browser && npm run build-bk-server && npm run build-api",
"build-api": "npm run browserify-api && npm run min-api",
"build-bk-browser": "npm run browserify-bk-browser && npm run min-bk-browser",
"build-bk-server": "npm run browserify-bk-server && npm run min-bk-server",
"build-client": "npm run browserify-client && npm run min-client",
"capture-server": "node src/capture-server",
"deploy-gh-pages": "node src/results-page/deploy.js",
"min-all": "npm run min-client && npm run min-bk-browser && npm run min-bk-server && npm run min-api",
"min-api": "uglifyjs dist/api.js --compress --mangle -o dist/api.min.js",
"min-bk-browser": "uglifyjs dist/bookmarklet-client.js --compress --mangle -o dist/bookmarklet-client.min.js",
"min-bk-server": "uglifyjs dist/bookmarklet-server.js --compress --mangle -o dist/bookmarklet-server.min.js",
"min-client": "uglifyjs dist/client.js --compress --mangle -o dist/client.min.js",
"test": "node node_modules/intern/bin/intern-runner.js config=test/config/intern-functional-standalone",
"unit-test": "node node_modules/intern/bin/intern-client.js config=test/config/intern-base",
"watch": "npm-watch"
},
"watch": {
"build-all": "src/client/*.js"
},
"author": {
"name": "gitgrimbo",
"email": "gitgrimbo@gmail.com",
"url": "https://github.com/gitgrimbo"
},
"repository": {
"type": "git",
"url": "https://github.com/gitgrimbo/cache-flow-problems.git"
},
"bugs": "https://github.com/gitgrimbo/cache-flow-problems/issues",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"async": "^2.0.1",
"body-parser": "^1.15.2",
"cli-table": "^0.3.1",
"connect": "^3.5.0",
"cors": "^2.8.1",
"ejs": "^2.5.2",
"es6-promisify": "^5.0.0",
"eslint": "^3.7.1",
"eslint-config-google": "^0.6.0",
"express-useragent": "^1.0.4",
"fs-promise": "^0.5.0",
"glob": "^7.1.0",
"http-shutdown": "^1.1.0",
"intern": "^3.3.1",
"jquery": "^3.1.1",
"mkdirp": "^0.5.1",
"morgan": "^1.7.0",
"node-uuid": "^1.4.7",
"object-assign": "^4.1.0",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"serve-static": "^1.11.1",
"shelljs": "^0.7.4",
"ua-parser-js": "^0.7.10",
"yargs": "^6.0.0"
}
}