This repository has been archived by the owner on May 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "html-resources",
"version": "1.1.2",
"keywords": [
"html",
"html-resources",
"parser",
"parse-files",
"scripts",
"stylesheets",
"images"
],
"description": "Parses HTML files and extracts custom resources (scripts, stylesheets, images, …)",
"author": "Łaniewski Bartosz <bartosz@laniewski.me> (https://laniewski.me/)",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Bartozzz/html-resources.git"
},
"bugs": {
"url": "https://github.com/Bartozzz/html-resources/issues"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-async-generator-functions": "7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.0",
"chai": "^4.2.0",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.93.0",
"mocha": "^6.0.1",
"prettier": "^1.14.3",
"rimraf": "^2.6.2"
},
"scripts": {
"test": "npm run test:eslint && npm run test:flow && npm run test:mocha",
"test:flow": "npx flow",
"test:mocha": "npx mocha --require @babel/register",
"test:eslint": "npx eslint --fix src",
"clean": "npx rimraf dist",
"build": "npx babel src -d dist",
"watch": "npx babel src -d dist -w",
"prepare": "npm run clean && npm run test && npm run build"
}
}