forked from linkedin/opticss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.27 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
{
"name": "@opticss/attr-analysis-dsl",
"version": "0.6.3",
"description": "A DSL for writing attribute analysis objects for use in OptiCSS.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"compile": "tsc --build && mkdir -p dist/src/grammar && cp grammar/*.js dist/src/grammar",
"pretest": "yarn run compile",
"prepublishOnly": "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",
"test": "mocha dist/test --opts test/mocha.opts",
"posttest": "yarn run lint",
"coverage": "istanbul cover -i \"dist/src/**/*.js\" -x \"**/grammar/**\" --dir ./build/coverage _mocha -- dist/test --opts test/mocha.opts && yarn run remap",
"remap": "remap-istanbul -i build/coverage/coverage.json -o coverage -t html",
"docs": "typedoc --out ./docs .",
"grammar": "nearleyc grammar/attrvalue.ne -o grammar/attrvalue.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linkedin/opticss.git"
},
"keywords": [
"css",
"cascade"
],
"author": "Chris Eppstein",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/linkedin/opticss/issues?q=is%3Aopen+is%3Aissue+label%3Apkg%3Aelement-analysis+label%3Apkg%3Aattr-analysis-dsl"
},
"homepage": "https://github.com/linkedin/opticss/tree/master/packages/%40opticss/attr-analysis-dsl",
"engines": {
"node": "6.* || 8.* || >= 10.*"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@opticss/util": "^0.7.0",
"moo": "^0.5.0",
"nearley": "^2.10.3"
},
"devDependencies": {
"@opticss/code-style": "^0.6.0",
"@opticss/element-analysis": "^0.6.2",
"@types/chai": "^4.0.4",
"@types/mocha": "^5.2.6",
"@types/nearley": "^2.9.0",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-typescript": "^1.1.9",
"remap-istanbul": "^0.13.0",
"source-map-support": "^0.5.3",
"tslint": "^5.10.0",
"typedoc": "^0.15.0-0",
"typescript": "~3.4.4"
},
"gitHead": "ef310cb1b10dbc90cae4f859da146863f99d940b",
"toolchain": {
"node": "10.15.3",
"yarn": "1.15.2"
}
}