-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "@eliasson/sequence",
"version": "0.6.0",
"description": "A simple sequence diagram tool",
"main": "dist/sequence.js",
"bin": {
"sequence": "./bin/sequence.js"
},
"scripts": {
"build": "webpack",
"test": "jest --verbose",
"antlr": "java -Xmx500M -cp \"/usr/local/lib/antlr-4.7-complete.jar:$CLASSPATH\" org.antlr.v4.Tool -Dlanguage=JavaScript ./parser/Sequence.g4"
},
"author": "markus.eliasson@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eliasson/sequence"
},
"keywords": [
"DSL",
"sequence diagram",
"CLI"
],
"dependencies": {
"antlr4": "^4.7.1",
"dot": "^1.1.2",
"get-installed-path": "^4.0.8"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.0.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"jest": "^21.2.1",
"webpack": "^3.10.0"
},
"jest": {
"testPathIgnorePatterns": [
"test-utils.js"
]
}
}