This repository was archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
{
"name": "html-sketchapp-cli",
"version": "0.0.0-development",
"description": "Quickly generate Sketch libraries from HTML documents and living style guides, powered by html-sketchapp",
"main": "index.js",
"engines": {
"node": ">=7.6"
},
"bin": {
"html-sketchapp": "bin/cli.js"
},
"scripts": {
"lint": "eslint bin script test",
"test": "npm run lint && jest",
"commit": "git-cz",
"commitmsg": "commitlint --edit --extends seek",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"success": false
},
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/html-sketchapp-cli.git"
},
"author": "SEEK",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/html-sketchapp-cli/issues"
},
"homepage": "https://github.com/seek-oss/html-sketchapp-cli#readme",
"dependencies": {
"@brainly/html-sketchapp": "^4.0.0",
"axios": "^0.18.0",
"decompress": "^4.2.0",
"es6-promisify": "^6.0.0",
"find-up": "^2.1.0",
"get-port": "^3.2.0",
"mkdirp": "^0.5.1",
"opn": "^5.1.0",
"puppeteer": "^1.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.58.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"serve-handler": "^3.2.1",
"url-join": "^4.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"@commitlint/cli": "^6.1.0",
"child-process-promise": "^2.2.1",
"commitizen": "^2.9.6",
"commitlint-config-seek": "^1.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-seek": "^4.0.0",
"husky": "^0.14.3",
"jest": "^22.0.1",
"semantic-release": "^15.1.3",
"traverse": "^0.6.6",
"travis-deploy-once": "^5.0.0"
}
}