forked from scratchfoundation/scratch-parser
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.46 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"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": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"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:benchmark": "node test/benchmark/performance.js",
"test": "npm run test:unit && npm run test:integration",
"semantic-release": "semantic-release"
},
"dependencies": {
"@turbowarp/json": "^0.1.1",
"@turbowarp/jszip": "^3.11.0",
"@turbowarp/sb3fix": "^0.3.0",
"ajv": "6.3.0",
"pify": "4.0.1"
},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"@commitlint/travis-cli": "7.2.1",
"babel-eslint": "10.1.0",
"benchmark": "^2.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^8.0.0",
"eslint-config-scratch": "9.0.3",
"glob": "^7.0.6",
"semantic-release": "^15.1.6",
"tap": "^11.1.3"
},
"engines": {
"node": ">=8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"version": "0.0.0-development"
}