-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "cdkit.appstore.design",
"version": "1.0.5",
"description": "Create the screenshots assets for the App Store and Google Play with ImageMagick",
"main": "src/cli.js",
"private": true,
"scripts": {
"start": "node src/cli",
"test": "./node_modules/.bin/mocha --reporter spec",
"test:coverage": "./node_modules/.bin/nyc npm test",
"test:functional": "./node_modules/.bin/mocha --reporter spec ./test/functional",
"test:all": "./node_modules/.bin/run-s test:functional test:coverage"
},
"bin": {
"appstore-design": "./src/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/timoa/cdkit.appstore.design.git"
},
"author": "Damien Laureaux",
"license": "MIT",
"homepage": "https://cdkit.org",
"dependencies": {
"colors": "1.4.0",
"figures": "2.0.0",
"gm": "1.25.0",
"lodash": "4.17.21",
"yargs": "16.2.0"
},
"engines": {
"node": ">=16.0",
"npm": ">=8.6.0"
},
"os": [
"linux",
"win32",
"darwin"
],
"devDependencies": {
"acorn": "8.14.0",
"acorn-jsx": "5.3.2",
"chai": "4.5.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"espree": "9.6.1",
"mocha": "10.8.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0"
}
}