-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "scratch-parser",
"description": "Parser for Scratch projects",
"author": "MIT Media Lab",
"license": "BSD-3-Clause",
"homepage": "https://github.com/scratchfoundation/scratch-parser#readme",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/scratchfoundation/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": {
"ajv": "^6.3.0",
"jszip": "^3.1.5",
"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.4",
"cz-conventional-changelog": "2.1.0",
"eslint": "8.57.0",
"eslint-config-scratch": "9.0.7",
"glob": "7.2.3",
"husky": "0.14.3",
"semantic-release": "^15.1.6",
"tap": "11.1.5"
},
"engines": {
"node": ">=8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"version": "0.0.0-development"
}