2018-12-17 18:11:08 -05:00
|
|
|
{
|
|
|
|
"name": "scratch-analysis",
|
2022-05-27 16:17:58 -04:00
|
|
|
"version": "2.2.0",
|
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": {
|
2022-05-27 11:38:37 -04:00
|
|
|
"test": "npm run test:lint && npm run test:unit",
|
2018-12-17 18:11:08 -05:00
|
|
|
"test:lint": "eslint .",
|
2022-05-27 11:38:37 -04:00
|
|
|
"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": {
|
2019-03-18 17:06:22 -04:00
|
|
|
"scratch-parser": "5.0.0"
|
2018-12-17 18:11:08 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-27 11:09:16 -04:00
|
|
|
"@babel/eslint-parser": "^7.5.4",
|
|
|
|
"eslint": "^8.16.0",
|
|
|
|
"eslint-config-scratch": "^7.0.0",
|
|
|
|
"tap": "^16.2.0"
|
2018-12-17 18:11:08 -05:00
|
|
|
}
|
|
|
|
}
|