-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 946 Bytes
/
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
{
"name": "@alchemy_cms/json_api",
"version": "2.0.0",
"description": "JSON API deserializer for AlchemyCMS",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/AlchemyCMS/alchemy-json_api.git"
},
"keywords": [
"AlchemyCMS",
"json:api",
"cms",
"headless"
],
"authors": [
"Martin Meyerhoff",
"Thomas von Deyen"
],
"main": "dist/alchemy-json_api.js",
"type": "module",
"files": [
"dist"
],
"dependencies": {
"@ungap/structured-clone": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@rollup/plugin-babel": "^6.0.4",
"babel-jest": "^29.0.2",
"jest": "^29.0.2",
"prettier": "^3.3.3",
"rollup": "^4.24.4"
},
"scripts": {
"build": "rollup --config",
"lint": "prettier --check 'src/**/*.js'",
"test": "jest"
},
"browserslist": "> 0.25%, not dead"
}