-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 976 Bytes
/
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
{
"name": "boilerplate_npm_name",
"version": "1.0.0",
"engines": {
"node": "10.16.3"
},
"description": "Official repo of boilerplate systems",
"main": "index.js",
"scripts": {
"build": "node build.js",
"test": "mocha tests/**/*.spec.js --require test-setup",
"local": "node app.js"
},
"repository": {
"type": "git",
"url": "your_url_here"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "your_url_here"
},
"homepage": "your_url_here",
"dependencies": {
"jstransformer-nunjucks": "^0.5.0",
"metalsmith": "^2.3.0",
"metalsmith-babel": "^5.1.0",
"metalsmith-in-place": "^4.2.0",
"metalsmith-sass": "^1.6.0",
"metalsmith-sitemap": "^1.2.2",
"node-sass": "^4.12.0"
},
"devDependencies": {
"@babel/preset-env": "^7.4.2",
"bootstrap-sass": "^3.3.7",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"mocha": "^6.0.2",
"netlify-cli": "^2.11.18",
"opn": "^5.4.0"
}
}