forked from moisesbaez/preprocess-cli-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "preprocess-cli-tool",
"version": "1.0.1",
"description": "A command-line tool for preprocess",
"repository": {
"type": "git",
"url": "https://github.com/moisesbaez/preprocess-cli-tool.git"
},
"scripts": {
"babel": "babel src --out-dir lib",
"build:development": "npm run kill:processes && npm run clean && (babel src --watch --out-dir lib &)",
"build:production": "npm run kill:processes && npm run clean && npm run babel",
"clean": "rm -rf lib/*",
"prepublish": "npm run build:production",
"kill:processes": "pgrep node | xargs -r kill",
"test": "NODE_ENV=development mocha \"test/**/*.test\" --compilers test:babel-register"
},
"author": "Moises Baez",
"license": "MIT",
"keywords": [
"cli",
"css",
"exclude",
"html",
"include",
"js",
"preprocess",
"process"
],
"dependencies": {
"chalk": "^4.1.1",
"preprocess": "^3.2.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"mocha": "^3.5.0"
},
"bin": {
"preprocess": "bin/preprocess.js"
}
}