forked from feedhenry/fh-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "fh-js-sdk",
"version": "2.7.0",
"description": "feedhenry js sdk",
"main": "dist/feedhenry.js",
"browser": {
"JSON": "./libs/json2.js"
},
"browserify-shim": {
"JSON": {
"exports": "JSON"
},
"./libs/generated/lawnchair.js": {
"exports": "Lawnchair"
},
"./libs/generated/crypto.js": {
"exports": "CryptoJS"
}
},
"browserify": {
"standalone": "feedhenry",
"transform": [
"browserify-shim"
]
},
"testling": {
"harness": "mocha-bdd",
"scripts": [
"test/browser/libs/sinon/sinon.js",
"test/browser/libs/sinon/sinon-ie.js"
],
"files": "test/tests/*.js",
"browsers": [
"ie/9..10",
"firefox/5.0",
"firefox/latest",
"chrome/7.0",
"chrome/latest",
"safari/5.0.5",
"safari/latest",
"opera/11",
"opera/next",
"iphone/6.0",
"ipad/6.0",
"android-browser/latest"
]
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/feedhenry/fh-js-sdk.git"
},
"author": "",
"license": "Copyright (c) 2014 FeedHenry Ltd, All Rights Reserved.",
"gitHead": "251a1f88a39f59f2652552ae245893a833faee71",
"dependencies": {
"type-of": "~2.0.1",
"loglevel": "~0.6.0",
"underscore": "~1.6.0",
"process": "~0.6.0"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-zip": "~0.12.0",
"grunt-contrib-qunit": "~0.4.0",
"express": "~3.4.8",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-uglify": "~0.3.2",
"grunt-contrib-connect": "~0.6.0",
"async": "~0.2.10",
"browserify": "~3.32.1",
"grunt-browserify": "~1.3.1",
"browserify-shim": "~3.3.1",
"chai": "~1.9.0",
"mocha": "~1.17.1",
"grunt-mocha-test": "~0.9.4",
"sinon": "~1.9.0",
"sinon-chai": "~2.5.0",
"grunt-mocha-phantomjs": "~0.4.3",
"grunt-contrib-watch": "~0.6.0",
"through": "~2.3.4",
"grunt-shell": "~0.6.4",
"grunt-env": "~0.4.1",
"grunt-text-replace": "0.3.12"
}
}