-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "tweego-setup",
"version": "3.0.0",
"description": "A basic project setup for Tweego with all the trimmings using Node.",
"main": "build.js",
"scripts": {
"start": "cd dist && npx http-server -c0 -o",
"compile:src": "node build.js",
"compile:twee": "tweego -o dist/index.html -m src/modules/ --head=\"src/head-content.html\" project",
"watch:twee": "tweego -o dist/index.html -m src/modules/ --head=\"src/head-content.html\" project -w",
"testmode:twee": "tweego -o dist/index.html -m src/modules/ --head=\"src/head-content.html\" project -t",
"build": "npm run compile:src && npm run compile:twee",
"build:test": "npm run compile:src && npm run testmode:twee"
},
"keywords": [
"twine",
"tweego",
"twee"
],
"author": "Chapel",
"license": "Unlicense",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"autoprefixer": "^10.4.7",
"clean-css": "^5.3.1",
"fs-jetpack": "^4.3.1",
"http-server": "^14.1.1",
"postcss": "^8.4.14",
"terser": "^5.14.2"
},
"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",
"private": true,
"browserslist": [
"> 1%",
"last 3 versions",
"last 10 Chrome versions",
"last 10 Firefox versions",
"IE >= 9",
"Opera >= 12"
]
}