-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.06 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.06 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
56
57
58
59
60
61
{
"name": "@css-blocks/broccoli",
"version": "1.5.0",
"description": "CSS Blocks Broccoli Addon",
"main": "dist/src/index.js",
"author": "Adam Miller <ammiller@linkedin.com>",
"license": "BSD-2-Clause",
"repository": "https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli",
"homepage": "https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/broccoli#readme",
"keywords": [
"@css-blocks/core",
"css blocks",
"broccoli-plugin"
],
"scripts": {
"test": "yarn run test:runner",
"test:runner": "mocha --opts test/mocha.opts dist/test",
"compile": "tsc --build",
"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"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@css-blocks/code-style": "^1.2.0",
"@css-blocks/glimmer": "^1.5.0",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"broccoli-test-helper": "^2.0.0",
"watch": "^1.0.2"
},
"dependencies": {
"@css-blocks/core": "^1.5.0",
"@glimmer/compiler": "^0.51.1",
"@glimmer/syntax": "^0.51.1",
"@opticss/template-api": "^0.7.0",
"broccoli-funnel": "^3.0.0",
"broccoli-merge-trees": "^4.0.0",
"broccoli-plugin": "^4.0.0",
"colors": "^1.2.1",
"debug": "^4.1.1",
"fs-extra": "^8.0.0",
"fs-tree-diff": "^2.0.0",
"glob": "^7.1.2",
"opticss": "^0.9.0",
"symlink-or-copy": "^1.2.0",
"walk-sync": "^2.0.0"
},
"volta": {
"node": "12.2.0",
"yarn": "1.21.0"
}
}