-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"private": true,
"name": "@css-blocks/jsx",
"version": "1.5.0",
"description": "Statically analyzes JSX files for CSS Blocks use.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"test": "yarn run test:runner",
"test:runner": "mocha dist/test --recursive --opts test/mocha.opts && yarn run lint",
"compile": "tsc --build",
"prepublish": "rm -rf dist && yarn run compile && yarn run lintall",
"watch": "watch 'yarn run test' './src' './test' --wait=3",
"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"
},
"keywords": [
"jsx",
"preact",
"react",
"static",
"analysis",
"CSS Blocks"
],
"author": "Adam Miller <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/linkedin/css-blocks/issues"
},
"engines": {
"node": "10.* || >= 12.*"
},
"repository": "https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/jsx",
"homepage": "https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/jsx#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@css-blocks/code-style": "^1.2.0",
"@css-blocks/runtime": "^1.2.0",
"@css-blocks/test-utils": "^1.2.0",
"babel-core": "^6.25.0",
"obj-str": "^1.0.0",
"preact": "^8.2.1"
},
"peerDependencies": {
"@css-blocks/runtime": "^0.23.0"
},
"dependencies": {
"@css-blocks/core": "^1.5.0",
"@opticss/template-api": "^0.7.0",
"@opticss/util": "^0.7.0",
"babel-traverse": "7.0.0-beta.3",
"babel-types": "7.0.0-beta.3",
"babylon": "7.0.0-beta.46",
"debug": "^4.1.1",
"minimatch": "^3.0.4",
"object.values": "^1.0.4",
"opticss": "^0.9.0"
},
"volta": {
"node": "12.2.0",
"yarn": "1.21.0"
}
}