forked from linkedin/css-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.45 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
78
{
"name": "@css-blocks/glimmer",
"version": "1.5.0",
"description": "Statically analyze & rewrite the css-block styles in Handlebars templates.",
"main": "dist/cjs/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"files": [
"dist",
"README.md",
"types-local"
],
"scripts": {
"test": "yarn run test:runner",
"test:runner": "mocha --opts test/mocha.opts dist/cjs/test/",
"compile": "tsc --version && tsc --build && tsc --build tsconfig.amd.json",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"prepublish": "rm -rf dist && 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 --wait=1"
},
"keywords": [
"glimmer",
"static",
"analysis",
"handlebars",
"@css-blocks/core",
"css",
"optimizer"
],
"author": "Chris Eppstein <[email protected]>",
"contributors": [
"Tom Dale <[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/glimmer",
"homepage": "https://github.com/linkedin/css-blocks/tree/master/packages/@css-blocks/glimmer#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@css-blocks/code-style": "^1.2.0",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"typescript": "~3.8",
"watch": "^1.0.2"
},
"dependencies": {
"@amiller-gh/glimmer-analyzer": "^0.4.0",
"@css-blocks/core": "^1.5.0",
"@glimmer/compiler": "^0.51.1",
"@glimmer/resolution-map-builder": "0.5.1",
"@glimmer/resolver": "^0.4.3",
"@glimmer/syntax": "^0.51.1",
"@opticss/element-analysis": "^0.6.2",
"@opticss/template-api": "^0.7.0",
"@opticss/util": "^0.7.0",
"debug": "^4.1.1",
"fs-extra": "^8.0.0",
"glob": "^7.1.2",
"global": "^4.3.2",
"object.values": "^1.0.4"
},
"volta": {
"node": "12.2.0",
"yarn": "1.21.0"
}
}