-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "fridge",
"version": "3.1.1",
"description": "Fridge API client for node/browser.",
"main": "dist/index.js",
"files": [
"dist/",
"lib/"
],
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run clean && npm run build:commonjs && npm run build:browser",
"clean": "rm -rf dist/* && mkdir -p dist",
"build:commonjs": "tsc --project tsconfig.json",
"build:browser": "webpack dist/index.js -o dist/fridge.min.js -p --config webpack.config.js",
"start": "tsc --project tsconfig.json --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/fridge-cms/fridge_api.js.git"
},
"keywords": [
"api",
"fridge",
"cms"
],
"author": "Mike Kruk <mike@ripeworks.com> (http://ripeworks.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fridge-cms/fridge_api.js/issues"
},
"homepage": "https://github.com/fridge-cms/fridge_api.js",
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"qs": "^6.9.4"
},
"devDependencies": {
"@types/node": "^14.0.24",
"@types/qs": "^6.9.3",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}