-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"private": false,
"name": "react-router-locations",
"description": "simple location helper for react-router",
"version": "0.0.0-development",
"author": {
"name": "Marco Wettstein",
"email": "maw@panter.ch",
"url": "https://www.panter.ch"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/panter/react-router-locations.git"
},
"bugs": "https://github.com/panter/react-router-locations/issues",
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-trailing-function-commas": "^6.20.0",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"glob": "^5.0.15",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"tape": "^4.2.2",
"travis-deploy-once": "^5.0.11",
"watch": "^1.0.2"
},
"scripts": {
"prepublish": "yarn run compile",
"test": "yarn run lint",
"compile": "rimraf dist && yarn run lint && babel src -s -d dist",
"compile:watch": "watch 'yarn run compile' src; yalc publish",
"lint": "eslint src/**.js",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"main": "./dist/main.js",
"dependencies": {
"react-router": "^5.0.1"
},
"publishConfig": {
"access": "public"
}
}