forked from TurboWarp/scratch-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1019 Bytes
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
33
34
35
36
37
{
"name": "scratch-parser",
"description": "Parser for Scratch projects",
"author": "MIT Media Lab",
"license": "MPL-2.0",
"homepage": "https://github.com/LLK/scratch-parser#readme",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/LLK/scratch-parser.git"
},
"scripts": {
"test:lint": "eslint . --ext=js",
"test:unit": "tap test/unit/*.js",
"test:integration": "tap test/integration/*.js",
"test:coverage": "tap test/{unit,integration}/*.js --coverage --coverage-report=lcov",
"test": "npm run test:unit && npm run test:integration"
},
"dependencies": {
"@turbowarp/json": "^0.1.1",
"@turbowarp/jszip": "^3.11.0",
"@turbowarp/sb3fix": "^0.5.0",
"ajv": "6.3.0",
"pify": "4.0.1"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "^8.0.0",
"eslint-config-scratch": "9.0.3",
"glob": "^7.0.6",
"tap": "^11.1.3"
},
"engines": {
"node": ">=8.0"
},
"version": "0.0.0-development"
}