-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "tiny-mark",
"version": "1.0.4",
"description": "A tiny partial markdown to html formatter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "run-s clean build:*",
"build:ts": "tsc",
"build:browser": "browserify dist/browserExport.js -s tinymark -o dist/browser/tinymark.js",
"build:browser-min": "uglifyjs -c -o dist/browser/tinymark.min.js -- dist/browser/tinymark.js",
"postbuild": "rimraf dist/browserExport*",
"test": "jest",
"clean": "rimraf dist",
"prepublish": "not-in-install && run-s test build || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnkahn/tiny-mark.git"
},
"keywords": [
"tiny-mark",
"format",
"formatter",
"html",
"markdown",
"parse"
],
"author": "John Kahn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/johnkahn/tiny-mark/issues"
},
"homepage": "https://github.com/johnkahn/tiny-mark#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/jest": "^24.0.24",
"babel-jest": "^24.9.0",
"browserify": "^16.5.0",
"in-publish": "^2.0.0",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"typescript": "^3.7.4",
"uglify-js": "^3.7.2"
}
}