This repository has been archived by the owner on Oct 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
75 lines (75 loc) · 2.24 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
68
69
70
71
72
73
74
75
{
"name": "restyle-loader",
"version": "0.0.3",
"description": "restyle loader module for webpack",
"license": "MIT",
"repository": "webpack-contrib/restyle-loader",
"author": "Daniel Verejan",
"homepage": "https://github.com/webpack-contrib/restyle-loader",
"bugs": "https://github.com/webpack-contrib/restyle-loader/issues",
"main": "index.js",
"engines": {
"node": ">= 6.9.0"
},
"scripts": {
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --cache src test",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"lint-staged": "lint-staged",
"release": "standard-version",
"release:ci": "conventional-github-releaser -p angular",
"release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
"security": "nsp check",
"test": "jest --env=node",
"test:watch": "jest --env=node --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage --env=node",
"ci:lint": "npm run lint && npm run security",
"ci:test": "npm run test -- --runInBand",
"ci:coverage": "npm run test:coverage -- --runInBand",
"defaults": "webpack-defaults"
},
"files": [
"lib/",
"index.js"
],
"peerDependencies": {
"webpack": "^4.0.0"
},
"dependencies": {
"loader-utils": "^1.0.3",
"schema-utils": "^0.4.7"
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-angular": "^6.1.3",
"@webpack-contrib/eslint-config-webpack": "^2.0.4",
"conventional-github-releaser": "^2.0.2",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"eslint": "^4.19.1",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.7.0",
"file-loader": "^1.1.11",
"husky": "^0.14.3",
"jest": "^22.4.4",
"jsdom": "^11.12.0",
"lint-staged": "^7.3.0",
"memory-fs": "^0.4.1",
"nsp": "^3.2.1",
"pre-commit": "^1.2.2",
"prettier": "^1.14.3",
"standard-version": "^4.4.0",
"webpack": "^4.23.1",
"webpack-defaults": "^2.3.0"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}