-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.21 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
{
"name": "tweego-setup",
"version": "2.0.2",
"description": "A basic project setup for Tweego with all the trimmings using Node.",
"main": "./dist/index.html",
"config": {
"format": "sugarcube-2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"open": "opn",
"gulp": "gulp",
"lint": "gulp lint",
"lint-js": "gulp lint",
"lint-css": "gulp validate",
"build": "gulp build && tweego -f $npm_package_config_format -m src/modules/ --head=src/head-content.html -o dist/index.html project && opn dist/index.html",
"testmode": "gulp build && tweego -f $npm_package_config_format -t -m src/modules/ --head=src/head-content.html -o dist/index.html project && opn dist/index.html",
"tweegobuild": "tweego -f $npm_package_config_format -m src/modules/ --head=src/modules/head-content.html -o dist/index.html project",
"build-win": "gulp build && tweego -f %npm_package_config_format% -m src/modules/ --head=src/head-content.html -o dist/index.html project && opn dist/index.html",
"testmode-win": "gulp build && tweego -f %npm_package_config_format% -t -m src/modules/ --head=src/head-content.html -o dist/index.html project && opn dist/index.html",
"tweegobuild-win": "tweego -f %npm_package_config_format% -m src/modules/ --head=src/head-content.html -o dist/index.html project"
},
"keywords": [
"twine",
"tweego",
"twee"
],
"author": "Chapel",
"license": "Unlicense",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"babel-preset-env": "^1.7.0",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^3.10.0",
"gulp-concat": "^2.6.1",
"gulp-csslint": "^1.0.1",
"gulp-jshint": "^2.1.0",
"gulp-noop": "^1.0.0",
"gulp-uglify": "^3.0.2",
"jshint": "^2.11.0",
"opn-cli": "^3.1.0"
},
"directories": {
"doc": "docs"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ChapelR/tweego-setup.git"
},
"bugs": {
"url": "https://github.com/ChapelR/tweego-setup/issues"
},
"homepage": "https://github.com/ChapelR/tweego-setup#readme"
}