2018-12-17 18:11:08 -05:00
|
|
|
{
|
|
|
|
"name": "scratch-analysis",
|
2019-03-13 15:57:45 -04:00
|
|
|
"version": "2.0.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 && npm run test:integration",
|
|
|
|
"test:lint": "eslint .",
|
|
|
|
"test:unit": "tap test/unit/*.js",
|
|
|
|
"test:integration": "tap test/integration/*.js",
|
|
|
|
"test:coverage": "tap test/{unit,integration}/*.js --coverage --coverage-report=lcov"
|
|
|
|
},
|
|
|
|
"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": {
|
|
|
|
"babel-eslint": "^10.0.1",
|
|
|
|
"eslint": "^5.10.0",
|
|
|
|
"eslint-config-scratch": "^5.0.0",
|
|
|
|
"tap": "^12.1.1"
|
|
|
|
}
|
|
|
|
}
|