-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
{
"name": "@runroom/purejs",
"version": "3.2.2",
"description": "PureJS is a pack of vanilla javascript functions exported as Nodejs modules.",
"author": "Italo Devoto Ramella <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:Runroom/purejs.git"
},
"license": "MIT",
"keywords": [
"runroom",
"starter-kit",
"library",
"no-jquery"
],
"main": "purejs.js",
"typings": "index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "run-p build:*",
"build:node": "tsc",
"build:webpack": "webpack --mode=production",
"dev": "webpack --mode=development",
"lint": "run-p lint:*",
"disabled:eslint": "eslint src/index.ts src/lib/*.ts",
"lint:prettier": "prettier --check .github src test .eslintrc.js jest.config.ts webpack.config.babel.js",
"lint:tsc": "tsc --noEmit --pretty false",
"pretest": "run-p build:*",
"prerelease": "run-p build:*",
"release": "changeset publish",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.20",
"@babel/core": "^7.20",
"@babel/eslint-parser": "^7.19",
"@babel/plugin-transform-object-assign": "^7.18",
"@babel/plugin-transform-runtime": "^7.19",
"@babel/preset-env": "^7.20",
"@babel/register": "^7.18",
"@babel/runtime": "^7.20",
"@changesets/changelog-github": "^0.4",
"@changesets/cli": "^2.26",
"@types/jest": "^29.2",
"@types/node": "^18.11",
"@typescript-eslint/eslint-plugin": "^5.48",
"@typescript-eslint/parser": "^5.48",
"babel-loader": "^9.1",
"eslint": "^8.32",
"eslint-config-prettier": "^8.6",
"eslint-plugin-prettier": "^4.2",
"eslint-webpack-plugin": "^3.2",
"jest": "^29.3",
"jest-environment-jsdom": "^29.3",
"npm-run-all": "^4.1",
"prettier": "^2.8",
"terser-webpack-plugin": "^5.3",
"ts-jest": "^29.0",
"ts-loader": "^9.4",
"ts-node": "^10.9",
"typescript": "^4.9",
"webpack": "^5.75",
"webpack-bundle-analyzer": "^4.7",
"webpack-cli": "^5.0"
}
}