-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·68 lines (68 loc) · 1.61 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
{
"name": "visua",
"version": "0.8.0",
"description": "A tool to describe brand design systems using standard CSS",
"main": "dist/visua.js",
"scripts": {
"test": "nyc mocha -r ts-node/register test/**/*.spec.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc",
"build:watch": "tsc -w",
"build:clean": "rm -rf dist && npm run build",
"prepublishOnly": "npm run build:clean && npm run test"
},
"bin": {
"visua": "dist/cli/visua-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umbopepato/visua.git"
},
"types": "dist/visua.d.ts",
"author": "Umberto Pepato",
"license": "MIT",
"bugs": {
"url": "https://github.com/umbopepato/visua/issues"
},
"homepage": "https://github.com/umbopepato/visua#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/css-tree": "^1.0.0",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.6",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"source-map-support": "^0.5.10",
"ts-node": "^8.0.2",
"typedoc": "^0.13.0",
"typescript": "^3.3.3333"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.19.0",
"css-tree": "^1.0.0-alpha.29",
"mkdirp": "^0.5.1",
"readline-promise": "^1.0.3",
"rimraf": "^2.6.3",
"table": "^5.2.3",
"template-file": "^3.0.1",
"winston": "^3.2.1"
},
"files": [
"dist"
],
"nyc": {
"extension": [
".ts"
],
"exclude": [
"src/css-transform-component.ts"
],
"include": [
"src/"
],
"all": true
}
}