This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
106 lines (106 loc) · 2.99 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "fh-js-sdk",
"version": "3.1.2",
"description": "feedhenry js sdk",
"main": "dist/feedhenry.js",
"types": "./fh-js-sdk.d.ts",
"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",
"prepublish": "grunt concat-core-sdk",
"doc:clean": "rimraf doc",
"doc:generate": "typedoc --includeDeclarations --excludeExternals --out doc ./fh-js-sdk.d.ts",
"doc:gh-pages": "touch doc/.nojekyll; git add doc/.*; git add doc/*; git commit -m 'Publishing to gh-pages'; git push origin :gh-pages --force ; git subtree push --prefix doc origin gh-pages",
"doc": "npm run doc:clean && npm run doc:generate && npm run doc:gh-pages",
"preshrinkwrap": "npm cache verify && npm cache clean && npm cache clean && npm ls",
"postshrinkwrap": "license-reporter save --full-dependency-tree --xml licenses.xml && license-reporter report --full-dependency-tree --silent"
},
"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": {
"browserify": "3.46.1",
"browserify-shim": "3.8.14",
"decode": "^0.3.0",
"fh-sync-js": "1.4.3",
"loglevel": "~1.6.1",
"process": "~0.11.10",
"type-of": "~2.0.1",
"underscore": "~1.9.0"
},
"devDependencies": {
"async": "0.2.10",
"chai": "1.9.0",
"express": "3.4.8",
"grunt": "0.4.2",
"grunt-browserify": "1.3.2",
"grunt-contrib-concat": "0.3.0",
"grunt-contrib-connect": "0.6.0",
"grunt-contrib-jshint": "0.8.0",
"grunt-contrib-qunit": "~0.4.0",
"grunt-contrib-uglify": "0.3.2",
"grunt-contrib-watch": "0.6.0",
"grunt-coveralls": "^1.0.1",
"grunt-env": "0.4.1",
"grunt-jscoverage": "^0.1.3",
"grunt-mocha-phantomjs": "0.7.0",
"grunt-mocha-test": "0.9.4",
"grunt-shell": "0.6.4",
"grunt-text-replace": "0.3.12",
"grunt-zip": "0.12.0",
"json2htmlcov": "^0.1.1",
"json2lcov": "^1.0.0",
"mocha": "1.17.1",
"moment": "^2.18.1",
"rimraf": "2.6.1",
"sinon": "1.9.0",
"sinon-chai": "2.5.0",
"through": "2.3.4",
"typedoc": "0.5.8"
}
}