-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
{
"name": "@robotical/automatic-assessments",
"version": "1.0.17",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "Automatic assessment of Marty and Scratch 3.0 projects",
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint \"src/**/*.ts\"",
"build": "tsc",
"prepare": "npm run build",
"test": "jest --config jestconfig.json",
"watch": "tsc -w"
},
"files": [
"lib/**/*"
],
"author": "Nikos Theodoropoulos",
"keywords": [
"scratch",
"automatic-assessments",
"marty"
],
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^27.4.7",
"prettier": "^3.1.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}