forked from benweet/stackedit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·40 lines (40 loc) · 1.32 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
{
"name": "stackedit-js",
"version": "1.0.5",
"description": "Produce universal library with webpack and es6",
"main": "docs/lib/stackedit.js",
"scripts": {
"lint": "eslint --ext .js src",
"build": "webpack --env dev && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "npm run lint",
"preversion": "npm run test",
"postversion": "git push origin master --tags && npm publish",
"patch": "npm run build && npm version patch -m \"Tag v%s\"",
"minor": "npm run build && npm version minor -m \"Tag v%s\"",
"major": "npm run build && npm version major -m \"Tag v%s\""
},
"author": "Benoit Schweblin",
"license": "MIT",
"bugs": {
"url": "https://github.com/benweet/stackedit.js/issues"
},
"homepage": "https://github.com/benweet/stackedit.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^4.0.1",
"webpack": "^3.10.0",
"yargs": "^10.0.3"
}
}