-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
65 lines (65 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "speechmarkdown-js",
"version": "2.1.0",
"description": "Speech Markdown parser and formatters in TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"dist.browser"
],
"engines": {
"node": ">= 10.13"
},
"author": "Mark Tucker <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/speechmarkdown/speechmarkdown-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/speechmarkdown/speechmarkdown-js"
},
"bugs": {
"url": "https://github.com/speechmarkdown/speechmarkdown-js/issues"
},
"scripts": {
"clean": "rimraf coverage dist tmp",
"build": "npm-run-all --parallel build:*",
"build:ts": "tsc -p tsconfig.json",
"build:browser": "browserify index.ts -p [tsify --noImplicityAny ] -s speechmarkdown -o ./dist.browser/speechmarkdown.js",
"build:minify": "browserify index.ts -p [tsify --noImplicityAny ] -s speechmarkdown | uglifyjs -cm -o ./dist.browser/speechmarkdown.min.js",
"watch": "tsc -w -p tsconfig.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:single": "jest -t $1",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"acorn": ">=5.7.4",
"browserify": "^16.5.0",
"clean-css": ">=4.1.11",
"jest": "^29.3.1",
"lodash": "^4.17.19",
"mixin-deep": ">=1.3.2",
"node-notifier": ">=8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"set-value": ">=2.0.1",
"ts-dedent": "^1.1.0",
"ts-jest": "^29.0.3",
"tsify": "^4.0.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "1.18.0",
"tsutils": "^3.17.1",
"typescript": "^4.9.4",
"uglify": "^0.1.5",
"uglify-js": "^3.6.0",
"underscore.string": ">=3.3.5"
},
"dependencies": {
"myna-parser": "^2.5.1",
"tslib": "^1.10.0"
}
}