-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
executable file
·50 lines (50 loc) · 1.25 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
{
"name": "node-iframe-replacement",
"version": "1.0.0",
"description": "Node & express replacement for the HTML iframe",
"main": "index.js",
"scripts": {
"start": "node example/server.js",
"test": "./node_modules/.bin/jasmine-node --verbose --junitreport test"
},
"repository": {
"type": "git",
"url": "git://github.com/john-doherty/node-iframe-replacement.git"
},
"keywords": [
"node",
"iframe",
"replacement",
"express",
"alternative"
],
"author": {
"name": "John Doherty",
"email": "[email protected]",
"url": "https://twitter.com/CambridgeMVP"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/john-doherty/node-iframe-replacement/issues"
},
"homepage": "https://github.com/john-doherty/node-iframe-replacement#readme",
"engines": {
"node": ">= 6.9.2"
},
"dependencies": {
"cheerio": "^0.20.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"is-url": "^1.2.4",
"node-cache": "^3.2.1",
"request-promise": "^3.0.0"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"jasmine-node": "^1.16.2",
"nock": "^9.6.1",
"supertest": "^2.0.1"
}
}