-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "@meredithcat/swapi",
"version": "1.0.1",
"main": "umd/swapi-wrapper.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"files": [
"esm/*",
"umd/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "rollup --config && tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node-fetch": "^2.5.0",
"cross-fetch": "^3.0.4",
"eslint": "^6.1.0",
"node-fetch": "^2.6.0",
"request": "^2.88.0",
"tslint": "^5.18.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.13.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-plugin-import": "^2.18.2",
"rollup": "^1.17.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.22.1",
"typescript": "^3.5.3"
},
"description": "Source code is located in `src/index.ts`.",
"repository": {
"type": "git",
"url": "git+https://github.com/meredithcat/swapi.git"
},
"bugs": {
"url": "https://github.com/meredithcat/swapi/issues"
},
"homepage": "https://github.com/meredithcat/swapi#readme"
}