-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 KB
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
{
"name": "luggage-session",
"version": "0.1.3",
"description": "Utils for obtaining and keeping dropbox authentication stuff in user session",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "babel --source-maps inline --optional runtime -d lib/ src/",
"watch": "babel --watch --source-maps inline --optional runtime -d lib/ src/",
"prepare": "npm run build",
"prepublish": "npm run build && npm test",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luggagejs/luggage-session.git"
},
"keywords": [
"react",
"luggage",
"dropbox"
],
"author": "dra1n <dra1n86@gmail.com> (https://github.com/dra1n)",
"contributors": [
{
"name": "dra1n",
"url": "https://github.com/dra1n",
"email": "dra1n86@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/luggagejs/luggage-session/issues"
},
"homepage": "https://github.com/luggagejs/luggage-session#readme",
"jest": {
"setupTestFrameworkScriptFile": "mock-local-storage"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.0.0",
"chai": "^3.2.0",
"eslint": "^3.18",
"jest": "^19.0.2",
"luggage": "luggagejs/luggage#2.1.1",
"mock-local-storage": "^1.0.2",
"react": "^15",
"webpack": "^2"
},
"peerDependencies": {
"luggage": "luggagejs/luggage#2.1.1"
},
"dependencies": {
"dropbox": "^2.5.2"
}
}