-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 715 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 715 Bytes
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
{
"name": "@stackkit/validate",
"version": "0.0.2",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"browser": "build/index.js",
"repository": "git@github.com:stackkit/validate.git",
"author": "larsvankleef <larsvankleef@outlook.com>",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:open": "open coverage/lcov-report/index.html",
"build": "npx rollup -c"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"rollup": "^2.23.1",
"rollup-plugin-filesize": "^9.0.2",
"@types/jest": "^26.0.10"
}
}