-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathpackage.json
86 lines (86 loc) · 2.51 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
{
"name": "@brainly/html-sketchapp",
"version": "4.5.0",
"description": "HTML to Sketch",
"keywords": [
"sketch",
"sketchapp",
"css",
"html"
],
"repository": {
"type": "git",
"url": "git+https://github.com/brainly/html-sketchapp.git"
},
"author": "Brainly - Konrad Dzwinel <kdzwinel@gmail.com>",
"license": "MIT",
"scripts": {
"build": "npm run build-lib && npm run build-plugin",
"build-lib": "babel html2asketch --out-dir build/html2asketch -D",
"build-plugin": "skpm-build",
"watch": "concurrently \"npm run watch-lib\" \"npm run watch-plugin\"",
"watch-lib": "npm run build-lib -- --watch",
"watch-plugin": "npm run build-plugin -- --watch --run",
"prepare": "npm run build-plugin && npm run test",
"test": "npm run build-lib && npm run lint && npm run tslint && npm run unit && npm run e2e",
"unit": "jest",
"lint": "eslint html2asketch/ asketch2sketch/ tests/ e2e/*.js",
"lint-fix": "npm run lint -- --fix",
"e2e": "cd e2e && webpack --config ./webpack.config.js && node ./run.js",
"e2e-fix": "npm run e2e -- --fix",
"e2e-debug": "npm run e2e -- --debug",
"tslint": "tslint -c tslint.json typings/*.d.ts typings/**/*.d.ts"
},
"engines": {
"sketch": ">=3.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@skpm/builder": "^0.7.4",
"concurrently": "^3.6.1",
"eslint": "^6.2.1",
"eslint-config-brainly": "^2.4.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jsdom": "11.11.0",
"minimist": "^1.2.0",
"puppeteer": "^1.19.0",
"skpm": "^1.3.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"variable-diff": "^1.1.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
},
"skpm": {
"name": "asketch2sketch",
"manifest": "asketch2sketch/manifest.json",
"main": "build/asketch2sketch.sketchplugin",
"assets": [
"asketch2sketch/assets/**/*"
]
},
"dependencies": {
"@brainly/sketchapp-json-plugin": "^0.1.3",
"murmur2js": "^1.0.0",
"normalize-css-color": "^1.0.2",
"sketch-constants": "^1.1.0"
},
"main": "build/html2asketch/index",
"typings": "typings/",
"files": [
"asketch2sketch",
"html2asketch",
"build/html2asketch",
"build/asketch2sketch.sketchplugin",
"README.md",
"LICENSE.md",
"package.json",
"package-lock.json"
],
"bugs": {
"url": "https://github.com/brainly/html-sketchapp/issues"
},
"homepage": "https://github.com/brainly/html-sketchapp#readme"
}