-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
54
55
56
57
{
"name": "zeev-utils",
"version": "0.8.3",
"main": "dist/zeev-utils.esm.js",
"module": "dist/zeev-utils.esm.js",
"browser": "dist/zeev-utils.js",
"description": "JavaScript utility library to interact with Zeev forms",
"scripts": {
"dev": "npm run test:watch && npm run dev:watch",
"dev:watch": "rollup -c -w",
"test:watch": "jest --watchAll --silent",
"test:coverage": "jest --coverage --silent",
"prebuild": "rimraf dist",
"build": "rollup -c",
"lint": "eslint src/**/*.js --max-warnings=0 --fix",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.js": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedbernardo/zeev-utils.git"
},
"keywords": [
"orquestra",
"zeev",
"bpm",
"bpms",
"util"
],
"author": "Pedro Bernardo <pedrovbernardo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedbernardo/zeev-utils/issues"
},
"homepage": "https://github.com/pedbernardo/zeev-utils#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@testing-library/jest-dom": "^5.16.3",
"@types/jest": "^27.4.1",
"babel-jest": "^27.5.1",
"eslint": "^8.12.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"rimraf": "^3.0.2",
"rollup": "^2.70.1"
}
}