forked from MrSwitch/hello.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.02 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "hellojs",
"version": "2.0.0-4",
"description": "A clientside Javascript library for standardizing requests to OAuth2 web services (and OAuth1 - with a shim)",
"homepage": "https://adodson.com/hello.js",
"main": "dist/hello.all.js",
"repository": {
"type": "git",
"url": "git@github.com/MrSwitch/hello.js"
},
"keywords": [
"oauth",
"oauth1.0",
"oauth2",
"api",
"facebooks",
"google",
"windows",
"linkedin",
"twitter"
],
"author": {
"name": "Andrew Dodson",
"email": "andrewjdodson@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MrSwitch/hello.js/issues"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
],
"plugins": [
"transform-object-assign"
]
}
]
]
},
"scripts": {
"debug": "gulp watch",
"lint": "eslint ./",
"build": "gulp build",
"test": "gulp test && npm run test:browserstack",
"test:browserstack": "bash browserstack.sh",
"test:browserstack:env": "source .env.sh && npm run test:browserstack"
},
"devDependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-2": "^6.13.0",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"browserstack-runner": "^0.5.1",
"bundle-collapser": "^1.2.1",
"eslint": "^4.2.0",
"expect.js": "^0.3.1",
"gulp": "^3.9.1",
"gulp-header": "^1.8.8",
"gulp-mocha-phantomjs": "^0.12.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.6",
"localhost": "^0.2.2",
"mocha": "^3.1.2",
"shunt": "^0.1.6",
"sinon": "^2.3.6",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"tricks": "^1.7.0"
}
}