-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 841 Bytes
/
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
{
"name": "ui-spy",
"version": "1.0.0",
"description": "A new way to spy your UI, withut a lot of requests",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "standard",
"dev": "nodemon server.js"
},
"standard": {
"ignore": [
"node_modules/"
],
"globals": [
"alert",
"jQuery",
"$"
]
},
"author": "Alisson Steffens",
"now": {
"name": "Ui Spy",
"alias": "ui-spy.now.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/npm/npm.git"
},
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.4",
"mongodb": "^2.2.33",
"mongoose": "^5.0.6",
"opn": "^5.3.0",
"request-ip": "^2.0.2"
},
"devDependencies": {
"nodemon": "^1.11.0",
"standard": "^10.0.3"
}
}