forked from linkedin/css-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.15 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
{
"name": "@css-blocks/glimmer",
"version": "0.19.0",
"description": "Statically analyze & rewrite the css-block styles in Handlebars templates.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"README.md",
"types-local"
],
"scripts": {
"test": "mocha --opts test/mocha.opts dist/test",
"compile": "rm -rf dist && tsc -p tsconfig.json",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"prepublish": "yarn run compile && yarn run lintall",
"lint": "tslint -t msbuild --project . -c tslint.cli.json",
"lintall": "tslint -t msbuild --project . -c tslint.release.json",
"lintfix": "tslint -t msbuild --project . -c tslint.cli.json --fix",
"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 types-local --wait=1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linkedin/css-blocks.git"
},
"keywords": [
"glimmer",
"static",
"analysis",
"handlebars",
"@css-blocks/core",
"css",
"optimizer"
],
"author": "Chris Eppstein <[email protected]>",
"contributors": [
"Tom Dale <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/linkedin/css-blocks/issues"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/linkedin/css-blocks/tree/master/packages/@css-blocks/glimmer#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@css-blocks/code-style": "^0.18.0"
},
"dependencies": {
"@css-blocks/core": "^0.19.0",
"@glimmer/compiler": "^0.33.0",
"@glimmer/resolution-map-builder": "0.5.1",
"@glimmer/resolver": "^0.4.3",
"@glimmer/syntax": "^0.33.0",
"@opticss/element-analysis": "^0.3.0",
"@opticss/template-api": "^0.3.0",
"@opticss/util": "^0.3.0",
"@types/glob": "^5.0.30",
"debug": "^2.6.8",
"glimmer-analyzer": "^0.2.0",
"glob": "^7.1.2",
"object.values": "^1.0.4"
}
}