forked from developit/snarkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.5 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
66
{
"name": "@commontimeltd/snarkdown",
"description": "Transform Markdown into HTML.",
"version": "2.3.0",
"main": "dist/snarkdown.js",
"module": "dist/snarkdown.es.js",
"umd:main": "dist/snarkdown.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "eslint src test && mocha --compilers babel-register",
"prepublish": "npm run -s build",
"release": "npm run -s build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"authors": [
"Jason Miller <[email protected]>"
],
"files": [
"src",
"dist"
],
"homepage": "https://github.com/developit/snarkdown",
"repository": "developit/snarkdown",
"license": "MIT",
"keywords": [
"markdown",
"gfm",
"md",
"html",
"parser"
],
"dependencies": {},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-preset-latest": "^6.22.0",
"babel-register": "^6.23.0",
"chai": "^3.5.0",
"eslint": "^3.16.1",
"microbundle": "^0.4.4",
"mocha": "^5.1.1"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"env": {
"browser": true,
"mocha": true,
"node": true,
"es6": true
},
"globals": {
"expect": true
},
"rules": {
"no-console": 1,
"no-cond-assign": 0,
"no-regex-spaces": 0,
"semi": [
2,
"always"
]
}
}
}