-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.94 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
60
61
62
63
64
65
66
67
{
"name": "html-webpack-react-template",
"description": "Write your HTML webpack plugin templates using React",
"keywords": [
"webpack",
"plugin",
"html",
"react",
"template"
],
"version": "0.0.0-semantically-released",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:nearmap/html-webpack-react-template.git"
},
"scripts": {
"default": "run clean test",
"clean": "rimraf ./build",
"build": "run build:*",
"build:babel": "babel src --out-dir build/pkg --ignore '**/*.test.js'",
"build:files": "cp ./README.md ./LICENSE package.json build/pkg/",
"test": "run lint jest",
"lint": "run lint:*",
"lint:js": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
"lint:md": "remark --no-stdout --use remark-lint *.md",
"jest": "jest --runInBand --no-cache ",
"cd": "run clean build release",
"release": "semantic-release"
},
"bugs": "https://github.com/nearmap/html-webpack-react-template/issues",
"homepage": "https://github.com/nearmap/html-webpack-react-template",
"main": "./index.js",
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@nearmap/eslint-config-react": "^1.0.1",
"@nearmap/jest-config": "^1.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.5.0",
"jest-cli": "^23.5.0",
"npx-run": "^2.1.0",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"remark-cli": "^5.0.0",
"remark-lint": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.9.14"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}