scratch-analysis/package.json

27 lines
712 B
JSON
Raw Normal View History

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": {
"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": {
"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
}
}