-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 962 Bytes
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
{
"name": "post-interaction-notifications",
"version": "1.0.0",
"description": "Display notifications about reviewing purchased products on client web sites",
"main": "app/index.js",
"author": "Christian Johannessen <c.johannessen@gmail.com>",
"license": "ISC",
"scripts": {
"lint": "eslint .",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "webpack",
"start": "./server.js",
"test": "mocha",
"preview": "npm run build && npm start"
},
"devDependencies": {
"colors": "^1.1.2",
"css-loader": "^0.15.1",
"eslint": "^0.23.0",
"express": "^4.13.0",
"ghooks": "^0.3.2",
"handlebars": "^3.0.3",
"handlebars-loader": "^1.0.2",
"jquery": "^2.1.4",
"lodash": "^3.9.3",
"node-libs-browser": "^0.5.2",
"serve-static": "^1.10.0",
"style-loader": "^0.12.3",
"webpack": "^1.9.11"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint"
}
}
}