-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "@remap/services",
"version": "2.0.0",
"description": "A JavaScript client for ReMap Services",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "ava-ts",
"lint": "eslint src/* test.ts",
"clean:lib": "if [ -d lib ]; then rm -rf lib; fi",
"prebuild": "npm run clean:lib",
"build": "babel src --out-dir lib --extensions '.ts'",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remap-app/services-js.git"
},
"author": "Shingo Sato",
"license": "MIT",
"bugs": {
"url": "https://github.com/remap-app/services-js/issues"
},
"homepage": "https://github.com/remap-app/services-js#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/nock": "^9.3.0",
"@types/node": "^10.10.3",
"ava": "^0.25.0",
"ava-ts": "^0.25.2",
"cross-fetch": "^2.2.2",
"eslint": "^5.6.1",
"eslint-plugin-typescript": "^0.12.0",
"nock": "^10.0.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.1",
"typescript-eslint-parser": "^19.0.2"
},
"peerDependencies": {
"cross-fetch": "^2.2.2"
}
}