-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
32 lines (32 loc) · 938 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
31
32
{
"name": "scratch-analysis",
"version": "2.4.0",
"description": "Analysis tool for summarizing the structure, composition, and complexity of Scratch programs.",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"prepare": "husky || true",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint .",
"test:unit": "tap --reporter nyan test/unit/*.js --statements=97 --branches=97"
},
"author": "Scratch Foundation",
"license": "BSD-3-Clause",
"dependencies": {
"scratch-parser": "5.0.0",
"scratch-sb1-converter": "2.0.50"
},
"devDependencies": {
"@babel/eslint-parser": "^7.5.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"eslint": "^8.16.0",
"eslint-config-scratch": "^7.0.0",
"husky": "^9.1.7",
"scratch-semantic-release-config": "1.0.8",
"tap": "^16.2.0"
}
}