-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "ingestor",
"version": "1.0.0",
"description": "for ingesting html/css",
"author": "[email protected]",
"license": "MIT",
"private": true,
"scripts": {
"test": "jest --config ./jest.conf.js",
"test-watch": "jest --config ./jest.conf.js --watch",
"ingest": "babel-node ./src/ingest.js",
"extract": "babel-node ./src/styleWrapperExtractor.js",
"build": "babel src -d lib"
},
"bin": {
"ingest": "./lib/ingest.js"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1"
},
"dependencies": {
"PrettyCSS": "^0.3.19",
"dropcss": "^1.0.5",
"node-html-parser": "^1.1.15",
"pretty": "^2.0.0",
"vue-sfc-parser": "^0.1.2",
"yargs": "^13.2.2"
}
}