-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.88 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@hikerfeed/restful-resource",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"release": "rm -rf dist/ && tsc -d && rollup -c",
"lint": "eslint --ext .ts --ignore-path .eslintignore .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '/**/*' --write",
"unit": "jest src/ --maxWorkers 6",
"unit:watch": "npm run unit -- --watch"
},
"author": "hikerfeed",
"private": false,
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "1.4.2",
"@typescript-eslint/parser": "1.4.2",
"eslint": "5.9.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.0.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "2.1.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "2.6.2",
"eslint-restricted-globals": "0.1.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rollup": "^1.27.3",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.2",
"ts-jest": "24.0.0",
"ts-loader": "5.3.3",
"ts-node": "8.0.3",
"tslib": "^1.10.0",
"typescript": "3.3.3333"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hikerfeed/restful-resource.git"
},
"bugs": {
"url": "https://github.com/hikerfeed/restful-resource/issues"
},
"homepage": "https://github.com/hikerfeed/restful-resource#readme",
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"preset": "ts-jest",
"transform": {
"^.+\\.ts$": "ts-jest",
"^.+\\.js$": "babel-jest"
},
"rootDir": "./src"
}
}