-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
69 lines (69 loc) · 1.9 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
67
68
69
{
"name": "team-directory",
"version": "1.6.5",
"description": "A rolodex for teams",
"main": "index.js",
"browserify": {
"transform": [
"envify",
"babelify"
]
},
"scripts": {
"start": "budo index.js --serve=dist/team-directory.js --live -d --pushstate",
"build": "browserify index.js | uglifyjs -c -m > dist/team-directory.js",
"test": "npm run lint && browserify test/test.js | smokestack -b firefox | tap-status",
"test-local": "./.env.sh ; npm run lint && browserify test/test.js | smokestack -b firefox | tap-status",
"lint": "eslint --no-eslintrc -c .eslintrc index.js src test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mapbox/team-directory.git"
},
"keywords": [
"directory",
"rolodex",
"contacts"
],
"author": "mapbox",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mapbox/team-directory/issues"
},
"homepage": "https://github.com/mapbox/team-directory#readme",
"devDependencies": {
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.5",
"babel-plugin-object-assign": "^1.2.1",
"babelify": "^6.3.0",
"browserify": "^11.2.0",
"budo": "^7.0.2",
"envify": "^3.4.0",
"eslint": "^1.7.2",
"eslint-plugin-react": "^3.10.0",
"smokestack": "^3.4.1",
"tap-status": "^1.0.1",
"tape": "^4.2.2",
"uglify-js": "^2.6.1"
},
"dependencies": {
"filesaver.js": "^0.2.0",
"fuzzy": "^0.1.1",
"history": "1.12.5",
"js-base64": "^2.1.9",
"json-csv": "^1.3.0",
"md5-jkmyers": "0.0.1",
"octokat": "^0.4.13",
"react": "^0.14.0",
"react-autosuggest": "^3.6.0",
"react-document-title": "^2.0.1",
"react-dom": "^0.14.0",
"react-modal": "^0.6.1",
"react-redux": "^3.0.1",
"react-router": "1.0.1",
"redux": "^3.0.2",
"redux-simple-router": "0.0.10",
"redux-thunk": "^1.0.0",
"vcf": "^1.1.2"
}
}