forked from mediamonks/jsonapi-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 974 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 974 Bytes
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
{
"name": "@mediamonks/jsonapi-client",
"version": "1.0.2",
"main": "dist/index.js",
"author": "Nathan Uphoff",
"license": "MIT",
"scripts": {
"start": "yarn && yarn watch",
"watch": "tsc -w -d --skipLibCheck",
"build": "jest -u --collectCoverage --passWithNoTests && rimraf dist && tsc -d --skipLibCheck",
"test": "NODE_ENV=development jest --watch --coverage",
"test:ci": "NODE_ENV=development jest",
"prepublishOnly": "yarn build"
},
"publishConfig": {
"access": "public"
},
"private": false,
"bugs": {
"url": "https://github.com/mediamonks/jsonapi-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mediamonks/jsonapi-client.git"
},
"dependencies": {
"isntnt": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.9",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.7.1-rc"
}
}