forked from chrisvxd/story2sketch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "story2sketch",
"version": "0.1.4",
"description": "Convert storybook to sketch",
"homepage": "https://github.com/chrisvxd/story2sketch",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chrisvxd/story2sketch.git"
},
"bugs": {
"url": "https://github.com/chrisvxd/story2sketch/issues"
},
"main": "lib/server/index.js",
"bin": "./lib/server/index.js",
"files": [
"lib/"
],
"scripts": {
"cz": "git-cz",
"format": "yarn run internal:prettier --write",
"internal:prettier": "prettier \"./*.{js,json,md}\" \"./**/*.{js,json,md}\"",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint --ignore-path .eslintignore .",
"lint:json": "eslint --ignore-path .eslintignore --ext .json .",
"lint:md": "remark --quiet --frail .",
"lint:format": "yarn run internal:prettier --list-different",
"precompile": "if [ ${SKIP_CLEANUP:-0} -ne 1 ]; then rimraf lib/*; fi",
"compile": "babel src -d lib --ignore page2layers.js --copy-files && webpack && chmod +x lib/server/index.js",
"prepublishOnly": "yarn compile"
},
"babel": {
"presets": [
"@wel-ui/babel-preset"
]
},
"remarkConfig": {
"presets": [
"lint-consistent",
"lint-recommended"
],
"plugins": {
"lint": {
"list-item-indent": "space",
"heading-increment": true
}
}
},
"dependencies": {
"chalk": "^2.3.0",
"cosmiconfig": "^4.0.0",
"find-up": "^2.1.0",
"html-sketchapp": "github:brainly/html-sketchapp#413c5a16c9f9f74bab9228f8bf1532d32676f628",
"mock-require": "^3.0.1",
"progress": "^2.0.0",
"puppeteer": "^1.0.0",
"qler": "^0.3.0",
"yargs": "^10.1.1"
},
"devDependencies": {
"@commitlint/cli": "^5.2.5",
"@commitlint/config-angular": "^5.1.1",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.0.0",
"babel-jest": "^20.0.0",
"babel-plugin-transform-class-properties": "~6.16.0",
"babel-plugin-transform-object-rest-spread": "6.19.0",
"babel-plugin-transform-runtime": "~6.15.0",
"babel-preset-es2015": "~6.16.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"commitizen": "^2.9.6",
"eslint": "^3.8.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-json": "~1.2.0",
"npm-run-all": "^4.1.1",
"prettier": "~1.9.2",
"remark-cli": "^2.0.0",
"remark-lint": "^5.1.0",
"remark-preset-lint-consistent": "1.0.0",
"remark-preset-lint-recommended": "1.0.0",
"rimraf": "^2.5.4",
"webpack": "^3.10.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}