-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 897 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 897 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
{
"name": "stripframe",
"version": "1.2.1",
"description": "Find the hidden web page in the frame.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint --ext js src test",
"test": "mocha --require babel-register",
"clean": "rimraf lib"
},
"author": "Minjun Kim <me@minjun.kim>",
"license": "MIT",
"repository": {
"type": "git",
"url": "github:minjunk/stripframe"
},
"dependencies": {
"htmlparser2": "3.9.2"
},
"devDependencies": {
"axios": "^0.19.0",
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"eslint": "^4.18.2",
"eslint-plugin-import": "^2.2.0",
"in-publish": "^2.0.0",
"mocha": "^3.2.0",
"rimraf": "^2.6.1"
}
}