-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.46 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
{
"name": "@anyres/axios-adapter",
"version": "0.3.0-rc1",
"description": "any resource",
"main": "./dist/cmjs/index.js",
"module": "./dist/es6/index.js",
"keywords": [
"RESTful",
"REST",
"CRUD",
"axios",
"anyres"
],
"repository": {
"type": "git",
"url": "https://github.com/anyres/axios-adapter.git"
},
"scripts": {
"build:cmjs": "tsc -P tsconfig.json",
"build:es6": "tsc -P tsconfig.json --module ES6 --outDir dist/es6",
"clean": "rimraf ./dist",
"build": "npm run clean & npm run build:cmjs & npm run build:es6",
"pub": "npm publish --scope --access public",
"test": "npm run clean & jest",
"upload:coverage": "codecov ./coverage/lcov.info"
},
"typings": "./dist/cmjs/index.d.ts",
"author": "niuba <[email protected]>",
"license": "MIT",
"dependencies": {
"@anyres/core": "^0.3.0",
"axios": "^0.18.0",
"codecov": "^3.1.0",
"rxjs": "^6.3.3",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/jest": "^23.3.11",
"jest": "^23.6.0",
"json-server": "^0.14.2",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}