forked from mate-academy/js_stateful-clones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 911 Bytes
/
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
{
"name": "stateful-clones",
"version": "1.0.0",
"description": "Cloning and transforming state",
"main": "src/transformStateWithClones.js",
"scripts": {
"init": "mate-scripts init",
"start": "mate-scripts start",
"format": "prettier --ignore-path .prettierignore --write './src/**/*.{html,css,scss,js}'",
"lint": "npm run format && mate-scripts lint",
"test:only": "mate-scripts test",
"update": "mate-scripts update",
"postinstall": "npm run update",
"test": "npm run lint && npm run test:only"
},
"author": "Mate academy",
"license": "GPL-3.0",
"devDependencies": {
"@mate-academy/eslint-config": "latest",
"@mate-academy/scripts": "^1.7.3",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"jest": "^29.6.1",
"prettier": "^3.2.5"
},
"mateAcademy": {
"projectType": "javascript"
}
}