forked from linkedin/css-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "@css-blocks/runtime",
"version": "1.2.0",
"description": "Browser runtime for computing dynamic classnames with css-blocks.",
"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",
"watch": "watch 'yarn run test' './src' './test' --wait=1",
"compile": "tsc --build",
"prepublish": "rm -rf dist && yarn run compile && yarn run lintall",
"test:runner": "mocha dist/test --opts test/mocha.opts",
"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": [
"@css-blocks/core"
],
"engines": {
"node": "10.* || >= 12.*"
},
"author": "Chris Eppstein <chris@eppsteins.net>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/linkedin/css-blocks/issues"
},
"repository": "https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/runtime",
"homepage": "https://github.com/linkedin/css-blocks/tree/master/packages/%40css-blocks/runtime#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@css-blocks/code-style": "^1.2.0"
},
"volta": {
"node": "12.2.0",
"yarn": "1.21.0"
}
}