forked from speechmarkdown/speechmarkdown-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "speechmarkdown-js",
"version": "1.0.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": "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",
"build: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",
"browserify": "^16.5.0",
"clean-css": ">=4.1.11",
"jest": "^24.9.0",
"lodash": ">=4.17.13",
"mixin-deep": ">=1.3.2",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"set-value": ">=2.0.1",
"ts-dedent": "^1.1.0",
"ts-jest": "^24.1.0",
"tsify": "^4.0.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.17.1",
"typescript": "^3.6.3",
"uglify": "^0.1.5",
"uglify-js": "^3.6.0",
"underscore.string": ">=3.3.5"
},
"dependencies": {
"myna-parser": "^2.5.1",
"tslib": "^1.10.0"
}
}