-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "werkstatt",
"version": "0.0.0-development",
"description": "Useful functions to encapsulate common scenarios",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"test": "jest",
"coverage": "jest --coverage",
"semantic-release": "semantic-release",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --mode=production --output-filename index.umd.min.js",
"build:types": "tsc",
"push:master": "git push origin master",
"add": "git add ."
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/sk8Guerra/werkstatt.git"
},
"keywords": [
"tools",
"utils"
],
"author": "Coco Guerra",
"license": "ISC",
"bugs": {
"url": "https://github.com/sk8Guerra/werkstatt/issues"
},
"homepage": "https://github.com/sk8Guerra/werkstatt#readme",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.7",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.23.3",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-throw-expressions": "^7.23.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.23.7",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"json-loader": "^0.5.7",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.0",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}