-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.15 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
{
"name": "@prepair/routie",
"version": "1.0.3",
"description": "Tiny little hash routing library",
"main": "lib/index.js",
"scripts": {
"build": "shx rm -rf lib && babel src -d lib",
"lint": "eslint src",
"precommit": "npm run lint",
"release": "npm run build && git status --porcelain && git checkout master && git pull origin master && standard-version && git push --follow-tags origin master && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prepair/routie.git"
},
"author": "Zsolt Vad <zsolt.vad@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prepair/routie/issues"
},
"homepage": "https://github.com/prepair/routie#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015-ie": "6.7.0",
"eslint": "4.8.0",
"eslint-config-semistandard": "11.0.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.2.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"husky": "0.14.3",
"shx": "0.2.2",
"standard-version": "4.3.0"
}
}