-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.53 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": "arqeo",
"version": "0.3.0",
"type": "module",
"description": "A npm package to organize and validate artifacts",
"main": "dist/index-require.cjs",
"module": "src/index.js",
"modules.root": "src",
"scripts": {
"test": "jest",
"build": "webpack --mode production",
"prettify": "(js-beautify dist/index-require.cjs >> dist/index-temp.cjs) && (mv dist/index-temp.cjs dist/index-require.cjs)",
"prepublish": "npm run build && npm run prettify",
"prepare": "husky install",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:cache": "jest --clearCache",
"test:run": "npm run test:cache && jest",
"test:watch": "npm run test:cache && jest --watchAll --collect-coverage --coverage",
"release": "npm run prepublish && np --any-branch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trouchet/arqeo.git"
},
"keywords": [
"array",
"condition"
],
"author": "brunolnetto",
"license": "MIT",
"bugs": {
"url": "https://github.com/trouchet/arqeo/issues"
},
"homepage": "https://github.com/trouchet/arqeo#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"js-beautify": "^1.14.7",
"np": "^7.6.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"lodash": "^4.17.21"
}
}