-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathpackage.json
70 lines (70 loc) · 1.71 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
{
"name": "api-playground",
"description": "Best Buy API Playground",
"version": "1.1.0",
"homepage": "",
"main": "src/",
"keywords": [
"feathers"
],
"license": "MIT",
"private": true,
"repository": {},
"author": {},
"contributors": [],
"bugs": {},
"engines": {
"node": ">= 4.4.7"
},
"scripts": {
"test": "cpy ./dataset.sqlite test --rename=testdb.sqlite && npm run mocha && semistandard",
"start": "node src/",
"mocha": "cross-env NODE_ENV=test nyc --cache mocha test/ --recursive --timeout=5000 --check-leaks",
"dev": "nodemon",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"ajv": "^4.8.2",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cors": "^2.7.1",
"degrees-radians": "^1.0.3",
"feathers": "^2.0.1",
"feathers-configuration": "^0.2.3",
"feathers-errors": "^2.4.0",
"feathers-hooks": "^1.5.4",
"feathers-rest": "^1.4.3",
"feathers-sequelize": "^1.3.3",
"feathers-socketio": "^1.4.1",
"marked": "^0.3.6",
"passport": "^0.3.2",
"radians-degrees": "^1.0.0",
"sequelize": "^3.24.8",
"serve-favicon": "^2.3.0",
"sqlite3": "^4.0.3",
"superagent": "^2.3.0",
"swagger-ui": "^2.2.6",
"swagger-ui-express": "^1.0.1",
"winston": "^2.2.0"
},
"devDependencies": {
"coveralls": "^2.11.15",
"cpy-cli": "^1.0.1",
"cross-env": "^3.1.3",
"mocha": "^2.5.3",
"nodemon": "^1.11.0",
"nyc": "^9.0.1",
"request": "^2.73.0",
"semistandard": "^9.2.1",
"supertest": "^2.0.1"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"src/middleware/swagger/swagger-ui",
"public/highlight.pack.js"
]
}
}