-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
77 lines (77 loc) · 2.42 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
76
77
{
"private": true,
"name": "@css-blocks/webpack",
"version": "1.5.0",
"description": "Webpack plugin for css-blocks.",
"main": "dist/src/index.js",
"scripts": {
"prepublish": "rm -rf dist && yarn run compile && yarn run lintall",
"compile": "tsc --build",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"lint": "tslint -t msbuild -c tslint.cli.json --project .",
"lintall": "tslint -t msbuild --project . -c tslint.release.json",
"lintfix": "tslint -t msbuild -c tslint.cli.json --project . --fix",
"test": "yarn run test:runner",
"test:runner": "mocha dist/test --opts test/mocha.opts",
"coverage": "istanbul cover -i dist/src/**/*.js --dir ./build/coverage node_modules/mocha/bin/_mocha -- dist/test --opts test/mocha.opts",
"remap": "remap-istanbul -i build/coverage/coverage.json -o coverage -t html",
"watch": "watch 'yarn run test' './src' './test' --wait=3"
},
"keywords": [
"css"
],
"author": "Chris Eppstein",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/linkedin/css-blocks/issues"
},
"types": "dist/src",
"files": [
"dist/src",
"*.md",
"test/mocha.opts"
],
"engines": {
"node": "10.* || >= 12.*"
},
"repository": "https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/webpack",
"homepage": "https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/webpack#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@css-blocks/code-style": "^1.2.0",
"@types/convert-source-map": "^1.3.33",
"@types/extract-text-webpack-plugin": "^2.1.0",
"@types/glob": "^7.1.1",
"@types/tapable": "^0.2.4",
"@types/webpack": "^4.0.0",
"@types/webpack-merge": "4.1.5",
"@types/webpack-sources": "^0.1.5",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"glob": "^7.1.2",
"raw-loader": "^0.5.1",
"style-loader": "^0.18.2",
"webpack": "^3.0.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"@css-blocks/core": "^1.5.0",
"@opticss/element-analysis": "^0.6.2",
"@opticss/template-api": "^0.7.0",
"async": "^3.1.0",
"convert-source-map": "^1.5.0",
"debug": "^4.1.1",
"loader-utils": "^1.0.1",
"opticss": "^0.9.0",
"source-map": "^0.7.3",
"tapable": "^0.2.5",
"webpack-sources": "^1.0.1"
},
"volta": {
"node": "12.2.0",
"yarn": "1.21.0"
}
}