-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
97 lines (97 loc) · 2.71 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "jparticles",
"description": "A lightweight, efficient and easy-to-use Canvas library for building some cool particle effects.",
"version": "3.5.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"browser"
],
"scripts": {
"node:exp": "node --experimental-top-level-await --es-module-specifier-resolution=node",
"dev": "webpack-dev-server --config scripts/webpack.config.js --color",
"build": "yarn node:exp scripts/build",
"release": "yarn node:exp scripts/release",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "jest",
"test:unit-watch": "yarn test:unit --watch",
"test:e2e": "cypress run",
"coverage": "yarn test:unit --coverage",
"coverage:report": "yarn coverage && codecov"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
},
"devEngines": {
"node": ">=14.3.0"
},
"resolutions": {
"tslib": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@rollup/plugin-node-resolve": "^11.1.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"codecov": "^3.8.3",
"copy-webpack-plugin": "^6.0.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.2",
"execa": "^5.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"inquirer": "^8.1.1",
"jest": "^27.0.5",
"lint-staged": "^10.2.11",
"lodash": "^4.17.21",
"ora": "^5.4.0",
"prettier": "^2.3.2",
"rollup": "^2.38.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^27.0.3",
"ts-loader": "^8.0.1",
"ts-node": "^10.0.0",
"tslib": "^2.1.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3",
"typescript-transform-paths": "^2.2.2",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"author": "Barrior",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Barrior/JParticles.git"
},
"bugs": {
"url": "https://github.com/Barrior/JParticles/issues"
},
"homepage": "jparticles.js.org",
"keywords": [
"JParticles",
"Particles",
"Particle effects"
]
}