forked from seek-oss/css-modules-typescript-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 KB
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
{
"name": "css-modules-typescript-loader",
"version": "0.0.0-development",
"description": "Webpack loader to create TypeScript declarations for CSS Modules",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/css-modules-typescript-loader.git"
},
"author": "SEEK",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/css-modules-typescript-loader/issues"
},
"scripts": {
"commit": "git-cz",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"test": "jest"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit --extends seek"
}
},
"homepage": "https://github.com/seek-oss/css-modules-typescript-loader#readme",
"dependencies": {
"line-diff": "^2.0.1",
"loader-utils": "^1.2.3"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"commitizen": "^3.0.2",
"commitlint-config-seek": "^1.0.0",
"css-loader": "^1.0.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.2",
"jest": "^24.7.1",
"memory-fs": "^0.4.1",
"semantic-release": "^15.9.17",
"travis-deploy-once": "^5.0.9",
"webpack": "^4.21.0"
},
"release": {
"success": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}