-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "@compositor/lab",
"version": "1.0.0-37",
"description": "CLI utilities for Compositor Lab",
"main": "lib/index.js",
"bin": {
"lab": "bin/cli.js"
},
"scripts": {
"test": "nyc ava",
"cover": "nyc report --reporter=html --reporter=lcov",
"build": "./bin/cli.js examples/lab.json --pkg -d examples/dist"
},
"keywords": [
"compositor",
"lab",
"components",
"design",
"system"
],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"@compositor/get-jsx-props": "0.0.4",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chalk": "^2.1.0",
"chokidar": "^1.7.0",
"find-up": "^2.1.0",
"indent": "0.0.2",
"lodash.flatten": "^4.4.0",
"lodash.uniq": "^4.5.0",
"meow": "^3.7.0",
"ora": "^1.3.0",
"prettier": "^1.7.4",
"react": "^16.0.0",
"stringify-object": "^3.2.1",
"update-notifier": "^2.2.0",
"write-file-atomic": "^2.3.0"
},
"devDependencies": {
"ava": "^0.22.0",
"nyc": "^11.2.1"
}
}