forked from sketch-hq/SketchAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1 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
{
"name": "sketch-api",
"private": true,
"version": "2.0.0",
"author": "Sketch",
"license": "MIT",
"description": "JavaScript API for Sketch",
"homepage": "https://github.com/sketch-hq/SketchAPI",
"scripts": {
"build": "./build.sh",
"test": "skpm-test",
"test:latest": "skpm-test --app=latest",
"test:xcode": "skpm-test --app=xcode",
"lint": "eslint \"Source/**\"",
"format-check": "prettier --check \"**/*.{js,json}\"",
"api-location:write": "defaults write com.bohemiancoding.sketch3 SketchAPILocation \"$(pwd)/build\"",
"api-location:delete": "defaults delete com.bohemiancoding.sketch3 SketchAPILocation",
"postinstall": "cd core-modules && npm ci"
},
"devDependencies": {},
"dependencies": {
"@skpm/fs": "0.2.4",
"@skpm/test-runner": "0.4.0",
"babel-loader": "8.0.6",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"prettier": "2.0.5",
"webpack": "4.39.3",
"webpack-cli": "3.3.8"
}
}