forked from scratchfoundation/scratch-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 901 Bytes
/
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
{
"name": "scratch-parser",
"description": "Parser for Scratch projects",
"author": "MIT Media Lab",
"license": "BSD-3-Clause",
"homepage": "https://github.com/LLK/scratch-parser#readme",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/LLK/scratch-parser.git"
},
"scripts": {
"test": "make test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"adm-zip": "0.4.7",
"ajv": "4.7.0",
"async": "2.0.1"
},
"devDependencies": {
"benchmark": "^2.1.1",
"cz-conventional-changelog": "2.0.0",
"eslint": "^3.5.0",
"glob": "^7.0.6",
"tap": "^7.1.2",
"semantic-release": "^6.3.2"
},
"engines": {
"node": ">=4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"version": "1.0.0"
}