-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 960 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 960 Bytes
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
{
"name": "webpoint-boilerplate",
"version": "1.0.0",
"description": "A simple Pug/SCSS boilerplate for WebPoint.",
"dependencies": {
"bulma": "^0.8.2"
},
"scripts": {
"build": "parcel build src/index.pug -d dist --no-source-maps",
"start": "parcel src/index.pug",
"test": "npx pug-lint src & npx eslint src & parcel build src/index.pug -d .temp --log-level 2 --cache-dir .temp/.cache & npx del-cli .temp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agoldstein03/WebPoint-Boilerplate.git"
},
"author": "Adam Goldstein",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/agoldstein03/WebPoint-Boilerplate/issues"
},
"homepage": "https://github.com/agoldstein03/WebPoint-Boilerplate#readme",
"devDependencies": {
"del-cli": "^3.0.1",
"eslint": "^7.4.0",
"pug": "^2.0.4",
"pug-lint": "^2.6.0",
"sass": "^1.26.10",
"parcel-bundler": "^1.12.4"
}
}