-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathpackage.json
35 lines (35 loc) · 1.19 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
{
"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:build": "webpack --config webpack.tests.config.js --env.identifier=$npm_config_identifier --env.spec=$npm_config_spec",
"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": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@skpm/builder": "0.7.11",
"@skpm/fs": "0.2.6",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.3.0",
"eslint": "7.11.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-import": "2.22.1",
"globby": "^11.0.1",
"prettier": "2.1.2",
"sketch-utils": "0.2.10",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-virtual-modules": "^0.3.2"
}
}