forked from devexperts/remote-data-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@devexperts/remote-data-ts",
"version": "2.0.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run tslint && npm run prettier && npm run jest",
"tslint": "tslint -c tslint.json --project tsconfig.json './src/**/*.ts'",
"jest": "jest",
"prettier": "prettier --list-different \"./src/**/*.ts\"",
"prettier:fix": "prettier --write \"./src/**/*.ts\"",
"prepublishOnly": "npm run test && npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"version": "npm run changelog && git add CHANGELOG.md"
},
"author": "devexperts",
"license": "MPL-2.0",
"devDependencies": {
"@types/jest": "^22.2.3",
"conventional-changelog-cli": "^2.0.21",
"dx-lint": "github:devex-web-frontend/dx-lint",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"prettier": "^1.17.1",
"ts-jest": "^23.10.5",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.5.2"
},
"dependencies": {
"fp-ts": "^2.0.0",
"io-ts": "^2.0.0",
"io-ts-types": "^0.5.0",
"tslib": "^1.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devex-web-frontend/remote-data-ts.git"
},
"bugs": {
"url": "https://github.com/devex-web-frontend/remote-data-ts/issues"
},
"homepage": "https://github.com/devex-web-frontend/remote-data-ts#readme",
"description": "RemoteData type",
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"publishConfig": {
"access": "public"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)spec)\\.ts$",
"testPathIgnorePatterns": [
"/dist"
],
"moduleFileExtensions": [
"ts",
"js"
]
}
}