-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "sscom",
"version": "0.1.2",
"main": "index.js",
"scripts": {
"cleanTemp": "rimraf /tmp/data.json",
"start": "npm run cleanTemp && babel-node src/index.js",
"build": "npm run cleanTemp && rimraf lib && babel src --out-dir lib"
},
"author": {
"name": "jackyon",
"email": "[email protected]",
"url": "http://www.findjo.com"
},
"bin": {
"sscom": "lib/prompt.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jackyon/sscom"
},
"preferGlobal": "true",
"license": "ISC",
"description": "Generate screenshot of component automatically",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-strict-mode": "^6.6.5",
"babel-preset-es2015": "^6.13.2"
},
"dependencies": {
"create-if-not-exist": "^0.0.2",
"glob": "^7.0.5",
"jsonfile": "^2.3.1",
"junk": "^1.0.3",
"shelljs": "^0.7.3",
"colors": "^1.1.2",
"prompt": "^1.0.0",
"rimraf": "^2.5.4"
},
"keywords": ["screenshot", "react", "components"]
}