-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.03 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.03 KB
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
52
53
54
55
{
"name": "tablescript.js",
"version": "0.6.22",
"description": "Javascript-based Tablescript parser and interpreter",
"url": "https://tablescript.org",
"bin": {
"tablescript": "./dist/bin/tablescript.js"
},
"main": "dist/lib/index.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "node_modules/.bin/babel src --ignore __tests__ --out-dir dist",
"build:parser": "node_modules/.bin/pegjs --cache --output src/lib/parser/tablescript-grammar-parser.js src/lib/grammar/tablescript.pegjs",
"build:tracing-parser": "node_modules/.bin/pegjs --trace --cache --output src/lib/parser/tablescript-grammar-parser.js src/lib/grammar/tablescript.pegjs",
"build:bundle": "webpack",
"dependency-graph": "madge --image tablescript-graph.svg src/bin/tablescript.js",
"lint": "node_modules/.bin/eslint src",
"test": "jest",
"test:examples": "find examples/tests -name \"*.tab\" -exec echo {} \\; -exec node dist/bin/tablescript.js {} \\;",
"test:tavern": "node dist/bin/tablescript.js examples/tavern/tavern.tab",
"ci:test": "jest --ci --runInBand --reporters=default --reporters=jest-junit",
"postversion": "git push --tags && yarn publish . --tag latest && git push && echo \"Successfully released version $npm_package_version!\""
},
"author": {
"name": "Jamie Hale",
"email": "jamie@smallarmyofnerds.com",
"url": "https://smallarmyofnerds.com"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Tablescript/tablescript.js"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/register": "^7.13.16",
"babel-jest": "^27.0.2",
"eslint": "*",
"eslint-config-google": "*",
"eslint-plugin-standard": "*",
"jest": "^27.0.4",
"jest-junit": "^12.1.0",
"madge": "^4.0.1",
"pegjs": "^0.10.0",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"commander": "^3.0.2",
"ramda": "^0.26.1"
}
}