-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
84 lines (84 loc) · 2.4 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@devexperts/remote-data-ts",
"version": "2.1.1",
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.es6.json && npm run import-path-rewrite && ts-node scripts/build",
"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,scripts}/**/*.ts\"",
"prettier:fix": "prettier --write \"./{src,scripts}/**/*.ts\"",
"prepublishOnly": "ts-node scripts/pre-publish",
"prerelease": "npm run build",
"import-path-rewrite": "import-path-rewrite",
"release": "ts-node scripts/release",
"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": {
"@devexperts/lint": "^0.29.1",
"@types/glob": "^7.1.3",
"@types/jest": "^22.2.3",
"conventional-changelog-cli": "^2.0.21",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"fp-ts": "^2.5.0",
"glob": "^7.1.7",
"io-ts": "^2.0.0",
"io-ts-types": "^0.5.7",
"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",
"ts-node": "8.8.2",
"typescript": "^3.5.2"
},
"peerDependencies": {
"fp-ts": "^2.0.0",
"io-ts": "^2.0.0",
"io-ts-types": "^0.5.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devexperts/remote-data-ts.git"
},
"bugs": {
"url": "https://github.com/devexperts/remote-data-ts/issues"
},
"homepage": "https://github.com/devexperts/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"
]
}
}