scratch-analysis/package.json

33 lines
938 B
JSON
Raw Permalink Normal View History

2018-12-17 18:11:08 -05:00
{
"name": "scratch-analysis",
"version": "2.4.1",
2018-12-17 18:11:08 -05:00
"description": "Analysis tool for summarizing the structure, composition, and complexity of Scratch programs.",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
2025-02-06 08:44:56 -08:00
"prepare": "husky || true",
"test": "npm run test:lint && npm run test:unit",
2018-12-17 18:11:08 -05:00
"test:lint": "eslint .",
"test:unit": "tap --reporter nyan test/unit/*.js --statements=97 --branches=97"
2018-12-17 18:11:08 -05:00
},
"author": "Scratch Foundation",
"license": "BSD-3-Clause",
"dependencies": {
2025-01-29 14:32:27 +01:00
"scratch-parser": "5.0.0",
"scratch-sb1-converter": "2.0.50"
2018-12-17 18:11:08 -05:00
},
"devDependencies": {
2022-05-27 11:09:16 -04:00
"@babel/eslint-parser": "^7.5.4",
2025-02-06 08:38:58 -08:00
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
2022-05-27 11:09:16 -04:00
"eslint": "^8.16.0",
"eslint-config-scratch": "^7.0.0",
2025-02-06 08:44:56 -08:00
"husky": "^9.1.7",
"scratch-semantic-release-config": "1.0.8",
2022-05-27 11:09:16 -04:00
"tap": "^16.2.0"
2018-12-17 18:11:08 -05:00
}
}