-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "@mediamonks/jsonapi-client",
"version": "2.1.3",
"main": "dist/index.js",
"author": "Nathan Uphoff",
"license": "MIT",
"scripts": {
"start": "yarn && yarn watch",
"watch": "tsc -w -d --skipLibCheck",
"build": "rimraf dist && tsc -d --skipLibCheck",
"test": "NODE_ENV=development jest --watch --coverage",
"test:ci": "NODE_ENV=development jest",
"format": "prettier --write \"**/*.{js,ts,scss,json}\"",
"prepublishOnly": "yarn build"
},
"prettier": "@mediamonks/prettier-config",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/mediamonks/jsonapi-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mediamonks/jsonapi-client.git"
},
"dependencies": {
"@types/dedent": "^0.7.0",
"dedent": "^1.0.0",
"isntnt": "^1.2.5",
"jest-diff": "^24.9.0"
},
"devDependencies": {
"@mediamonks/prettier-config": "^1.0.1",
"@types/jest": "^24.9.0",
"@types/node": "^12.12.30",
"jest": "^24.9.0",
"prettier": "^3.0.0",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
}
}