-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
34 lines (34 loc) · 1.12 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
{
"name": "myna-parser",
"version": "2.5.1",
"description": "A text parsing (syntactic analysis) library written in TypeScript.",
"main": "myna.js",
"homepage": "https://cdiggins.github.io/myna-parser",
"bugs": "https://github.com/cdiggins/myna-parser/issues",
"license": "MIT",
"author": {
"name": "Christopher Diggins",
"email": "cdiggins@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/cdiggins/myna-parser.git"
},
"runkitExampleFilename": "tests/test_node_example-1.js",
"scripts": {
"build": "tsc",
"test": "mocha tests/mocha_runner.js",
"testBrowser": ".\\tests\\qunit.html",
"testTools": "node .\\tests\\test_all_tools",
"makesite": "node tools/myna_build_site.js",
"makedist": "uglifyjs myna.js -o dist/myna.min.js",
"copyfiles": "cpx {myna.ts,myna.js,examples/*.*,tests/*.*,grammars/*.js} docs",
"full": "npm run build && npm test && npm run testBrowser && npm run makesite && npm run copyfiles && npm run makedist"
},
"devDependencies": {
"cpx": "~1.5",
"mocha": "~6.1",
"typescript": "~3.5",
"uglify-js": "~3.6"
}
}