-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 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
54
{
"name": "particle-system-es6",
"version": "1.0.0",
"description": "PArticle System ES6 using classes",
"main": "index.js",
"scripts": {
"start": "npx http-server",
"test": "jest --watch --config=jest.config.js",
"test-no-watch": "jest --config=jest.config.js",
"eslint": "eslint \"src/**/*.js\" --fix",
"validate": "npm-run-all --parallel eslint test-no-watch",
"precommit": "npm run eslint",
"prepush": "npm run validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/area73/particle-system-es6.git"
},
"keywords": [
"particle",
"system",
"es6",
"classes",
"javascript"
],
"author": "Rodrigo Erades <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/area73/particle-system-es6/issues"
},
"homepage": "https://github.com/area73/particle-system-es6#readme",
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/preset-env": "7.16.8",
"babel-eslint": "10.1.0",
"babel-jest": "27.4.6",
"canvas": "2.8.0",
"eslint": "8.7.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-html": "6.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"event-target-shim": "6.0.2",
"husky": "7.0.4",
"jest": "27.4.7",
"jest-canvas-mock": "2.3.1",
"jest-extended": "1.2.0",
"jest-junit": "13.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.1"
}
}