This repository was archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.82 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.82 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
{
"name": "firststreet-js",
"version": "0.1.5",
"description": "\"A Javascript API Client for the First Street Foundation API\"",
"author": "First Street Foundation",
"license": "MIT",
"homepage": "https://github.com/FirstStreet/firststreet-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/FirstStreet/firststreet-js.git"
},
"keywords": [
"firststreet"
],
"bugs": {
"url": "https://github.com/FirstStreet/firststreet-js/issues"
},
"files": [
"dist/firststreet.js"
],
"main": "dist/firststreet.js",
"scripts": {
"dev": "NODE_ENV=development webpack --watch --mode=development",
"test:dev": "jest --watch --updateSnapshot --coverage",
"test:coverage": "jest --coverage ",
"test": "jest --coverage ",
"build": "rm -rf dist && NODE_ENV=production webpack --mode production --config ./webpack.config.js --mode=production",
"lint": "eslint src",
"prepare": "npm run build",
"publish": "npm run build"
},
"dependencies": {
"-": "0.0.1",
"@babel/runtime": "^7.14.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/eslint-plugin": "^7.13.16",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"babel-loader": "^8.2.2",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"jsdoc": "^3.6.2",
"nodemon-webpack-plugin": "^4.5.2",
"prettier": "^1.18.2",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/src/__mocks__/",
"<rootDir>/node_modules/"
]
}
}