-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 733 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
{
"name": "node-bang-suggest",
"version": "1.1.1",
"engines": {
"node": "0.10.x",
"npm": "1.x"
},
"repository": "https://github.com/nfriedly/node-bang-suggest",
"jshintConfig": {
"undef": true,
"unused": true,
"newcap": true,
"node": true,
"browser": false,
"devel": true
},
"scripts": {
"start": "gatling ./app.js",
"test": "npm run jshint",
"beautify": "js-beautify --replace ./*.js",
"jshint": "jshint ./ --exclude node_modules/"
},
"dependencies": {
"newrelic": "~1.1.1",
"gatling": "~1.1.0",
"async": "~0.2.9",
"mime": "~1.2.11",
"node-static": "~0.7.2"
},
"devDependencies": {
"js-beautify": "~1.4.2",
"jshint": "~2.3.0"
}
}