This repository was archived by the owner on Apr 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 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
{
"name": "@retailmenot/roux-server",
"version": "1.0.5",
"description": "Express application that serves a pantry of ingredients for the Roux ecosystem.",
"main": "index.js",
"scripts": {
"test": "tap -Rspec test/**/*.js",
"lint": "eslint ."
},
"bin": {
"roux-server": "bin/start-server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/RetailMeNotSandbox/roux-server.git"
},
"keywords": [
"roux",
"roux-server"
],
"author": "RMN Engineering",
"contributors": [
"Eric Capps <ecapps@rmn.com>",
"Elyse Holladay <eholladay@rmn.com>",
"Lon Ingram <lingram@rmn.com>",
"Kyle Smith <kbsmith@rmn.com>",
"Luke Zilioli <lzilioli@rmn.com>"
],
"license": "MIT",
"dependencies": {
"@retailmenot/roux": "^1.0.1",
"@retailmenot/roux-handlebars-tools": "^1.0.0",
"@retailmenot/roux-sass-importer": "^1.0.0",
"bluebird": "^3.3.5",
"cheerio": "^0.20.0",
"commander": "^2.9.0",
"copy-webpack-plugin": "^1.1.1",
"css-loader": "^0.21.0",
"expose-loader": "^0.7.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"handlebars": "^4.0.5",
"lodash": "^4.17.11",
"markdown-it": "^6.0.0",
"node-sass": "^3.4.1",
"object-path": "^0.9.2",
"sass-loader": "^3.1.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0"
},
"engines": {
"node": "^4.0.0"
},
"devDependencies": {
"@retailmenot/core-ui-eslintrc": "^5.0.0",
"eslint": "^3.12.2",
"grunt": "^0.4.5",
"gruntify-eslint": "^1.2.0",
"mkdirp": "^0.5.1",
"mock-fs": "^3.5.0",
"mockery": "^1.4.0",
"rimraf": "^2.4.4",
"sinon": "^1.17.2",
"tap": "^2.3.1",
"touch": "^1.0.0"
}
}