-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.38 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.38 KB
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
{
"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": "./Scripts/build.sh",
"test:build": "webpack --config webpack.tests.config.js --env identifier=$npm_config_identifier --env spec=$npm_config_spec",
"test": "./Scripts/test.sh $npm_config_spec",
"test:suite": "./Scripts/test.sh",
"test:custom": "./Scripts/test.sh",
"test:suiteOnCustom": "./Scripts/test.sh",
"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": "^13.0.1",
"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": "^5.105.0",
"webpack-cli": "^6.0.1",
"webpack-virtual-modules": "^0.6.2"
}
}