-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "@colinrotherham/core-static",
"version": "0.1.0",
"description": "Static site generator, built using Core",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/colinrotherham/core-static.git"
},
"engines": {
"node": ">=12.13.0 <13.0.0"
},
"author": "Colin Rotherham",
"homepage": "https://github.com/colinrotherham/core-static",
"scripts": {
"test": "npm run test:dependencies && npm audit && npm run test:lint",
"test:dependencies": "npm ls --depth=0",
"test:lint:js": "eslint ./src --ext .js,.json,.mjs",
"test:lint:css": "stylelint ./src/**/*.scss",
"test:lint": "npm run test:lint:js && npm run test:lint:css",
"build": "cross-env NODE_ENV=production npm test && gulp",
"dev": "cross-env NODE_ENV=development gulp dev"
},
"browserslist": [
"last 2 versions",
"> 2%",
"IE >= 8",
"iOS >= 7"
],
"devDependencies": {
"@colinrotherham/core": "^9.2.1",
"cross-env": "^7.0.2",
"fg-loadcss": "^2.1.0",
"fg-loadjs": "^1.1.0",
"normalize-scss": "^7.0.1",
"picturefill": "^3.0.3",
"terser-webpack-plugin": "^2.3.5"
},
"dependencies": {}
}