-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "buttercms",
"version": "3.0.0",
"description": "ButterCMS API Client",
"keywords": [
"buttercms",
"butter",
"cms",
"api",
"headless cms"
],
"engines": {
"node": ">=20.18.0"
},
"scripts": {
"build": "webpack",
"build-dev": "webpack --config webpack.dev.js",
"run-dev": "cd tests && python3 -m http.server",
"test": "npm run build && npm run test:all",
"test:all": "npm run jest",
"test:watch": "npm run jest --watch",
"jest": "node --experimental-vm-modules node_modules/.bin/jest"
},
"homepage": "https://github.com/buttercms/buttercms-js",
"author": "ButterCMS <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/buttercms/buttercms-js.git"
},
"main": "dist/butter.umd.js",
"module": "dist/butter.esm.js",
"types": "lib/butter.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/butter.esm.js",
"require": "./dist/butter.umd.js",
"types": "./lib/butter.d.ts"
}
},
"files": [
"dist",
"lib/butter.d.ts"
],
"license": "MIT",
"devDependencies": {
"jest": "^29.7.0",
"msw": "^2.6.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}