-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.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
72
{
"name": "web-service",
"version": "0.5.7",
"description": "Instantiates web services: REST Api, file upload, etc",
"main": "index.commonjs.js",
"module": "index.js",
"dependencies": {
"async-busboy": "^0.1.0",
"babel-runtime": "^6.6.1",
"filesize-parser": "^1.3.1",
"fs-extra": "^0.30.0",
"http-proxy": "^1.14.0",
"ip": "^1.1.3",
"jsonwebtoken": "^7.4.0",
"koa": "^2.0.0",
"koa-bodyparser": "^3.1.0",
"koa-bunyan": "^1.0.0",
"koa-compress": "^2.0.0",
"koa-locale": "^1.0.0",
"koa-mount": "^2.0.0",
"koa-router": "^7.0.1",
"koa-send": "^4.1.0",
"print-error": "^0.1.6",
"superagent": "^2.1.0",
"uid-safe": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.7.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-env": "^1.6.1",
"chai": "^3.5.0",
"cross-env": "^5.2.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.4.5",
"npm-run-all": "^1.4.0",
"rimraf": "^2.5.0"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register --colors --bail --reporter spec --require ./test/setup.js \"./{,!(node_modules|commonjs|modules)/**/}*.test.js\" --recursive",
"test-coverage": "istanbul cover -x \"modules/**\" -x \"commonjs/**\" -x \"*.test.js\" node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register --colors --reporter dot --require ./test/setup.js \"./{,!(node_modules|commonjs|modules)/**/}*.test.js\" --recursive",
"test-travis": "istanbul cover -x \"modules/**\" -x \"commonjs/**\" -x \"*.test.js\" node_modules/mocha/bin/_mocha --report lcovonly -- --compilers js:babel-core/register --colors --reporter spec --require ./test/setup.js \"./{,!(node_modules|commonjs|modules)/**/}*.test.js\" --recursive",
"clean-for-build": "rimraf ./commonjs/**/* ./modules/**/*",
"build-commonjs-modules": "cross-env BABEL_ENV=commonjs babel ./source --out-dir ./commonjs --source-maps",
"build-es6-modules": "cross-env BABEL_ENV=es6 babel ./source --out-dir ./modules --source-maps",
"build": "npm-run-all clean-for-build build-commonjs-modules build-es6-modules",
"prepublish": "npm-run-all build test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catamphetamine/web-service.git"
},
"keywords": [
"javascript",
"retina",
"detect",
"screen",
"device",
"pixel",
"ratio",
"density",
"ddpx"
],
"author": "catamphetamine <purecatamphetamine@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/catamphetamine/web-service/issues"
},
"homepage": "https://github.com/catamphetamine/web-service#readme"
}