forked from wepublish/wepublish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "@wepublish/api-media-karma",
"version": "2.4.0",
"description": "We.publish media service",
"keywords": [
"images",
"mongodb",
"publishing",
"media",
"newspaper",
"cms",
"subscription"
],
"homepage": "https://github.com/wepublish/wepublish",
"bugs": {
"url": "https://github.com/wepublish/wepublish/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/wepublish/wepublish.git",
"directory": "packages/api-media-karma"
},
"main": "./lib/",
"license": "MIT",
"scripts": {
"build": "run-s copy-license build:*",
"build:typescript": "tsc -b ./src/tsconfig.json",
"watch": "npm-run-all copy-license --parallel watch:*",
"watch:typescript": "tsc -b ./src/tsconfig.json --watch",
"copy-license": "shx cp ../../LICENSE ./",
"clean": "shx rm -rf ./LICENSE ./lib",
"prepare": "run-s clean copy-license build",
"test": "jest --coverage"
},
"dependencies": {
"form-data": "^3.0.0",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/graphql-upload": "^8.0.3",
"@types/jest": "^26.0.14",
"@types/node-fetch": "^2.5.5",
"jest": "^26.4.2",
"npm-run-all": "^4.1.5",
"shx": "^0.3.2",
"ts-jest": "^26.3.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@wepublish/api": "*"
}
}