-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.45 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": "syrianarchive-api",
"version": "0.0.1",
"description": "A REST API for syrianarchive",
"main": "_dist/app.js",
"config": {
"srcDir": "lib",
"testDir": "test",
"distDir": "_dist",
"reporter": "dot"
},
"scripts": {
"lint:src": "eslint --cache $npm_package_config_testDir $npm_package_config_srcDir",
"lint:docs": "documentation lint $npm_package_config_srcDir/**/*/js",
"lint": "npm run lint:src && npm run lint:docs",
"compile": "babel -d $npm_package_config_distDir $npm_package_config_srcDir",
"watch:lint": "chokidar \"$npm_package_config_testDir/**/*.js\" \"$npm_package_config_srcDir/**/*.js\" -c \"npm run lint -s\"",
"watch:docs": "chokidar \"$npm_package_config_srcDir/**/*.js\" -s \"npm run docs\"",
"watch:build": "chokidar \"$npm_package_config_srcDir/**/*.js\" -c \"npm run compile -s\"",
"watch": "concurrently -p \"[{name}]\" -n \"LINT,BUILD,TEST,DOCS\" \"npm run watch:lint\" \"npm run watch:build\" \"npm run watch:test\" \"npm run watch:docs\"",
"prebuild": "npm run clean && npm run lint",
"build": "npm run compile",
"clean": "rm -rf $npm_package_config_distDir",
"server": "babel-node ./lib/server.js",
"dev": "concurrently -p \"[{name}]\" -n \"LINT,SERVER\" \"npm run watch:lint\" \"npm run server\""
},
"keywords": [
"syrianarchive"
],
"author": "niko <[email protected]>",
"license": "GPL-3.0",
"homepage": "https://gitlab.com/littlefork/littlefork-api#README",
"devDependencies": {
"apidoc": "^0.17.5",
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chokidar-cli": "^1.2.0",
"concurrently": "^3.3.0",
"eslint": "^3.16.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-compat": "^1.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-promise": "^3.4.2",
"jsverify": "^0.7.4",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
},
"dependencies": {
"bluebird": "^3.4.7",
"body-parser": "^1.16.1",
"cors": "^2.8.1",
"documentation": "^4.0.0-beta.18",
"errorhandler": "^1.5.0",
"express": "^4.14.1",
"express-winston": "^2.2.0",
"fuse": "^0.4.0",
"fuse.js": "^3.0.5",
"fuzzy": "^0.1.3",
"i": "^0.3.6",
"lodash": "^4.17.4",
"moment": "^2.19.2",
"rimraf": "^2.6.1",
"serve-static": "^1.11.2",
"winston": "^2.3.1"
}
}