-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.32 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
{
"name": "snowboard",
"private": true,
"scripts": {
"lint": "eslint --ext .js packages/*/src packages/*/tests",
"test": "jest",
"build": "npm run build --workspaces",
"prepare": "husky install"
},
"author": "Ben Thomson <[email protected]>",
"homepage": "https://wintercms.com",
"repository": "github:wintercms/snowboard.js",
"bugs": "https://github.com/wintercms/snowboard.js/issues",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"canvas": "^2.11.2",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"rollup": "^3.27.2"
},
"engines": {
"node": ">=14.18.0",
"npm": ">=8.0.0"
},
"workspaces": [
"packages/base",
"packages/controls",
"packages/reactivity"
]
}