This repository has been archived by the owner on Jun 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "soundcloud-widget",
"version": "0.2.1",
"description": "A wrapper around the Soundcloud widget js.",
"main": "index.js",
"scripts": {
"lint": "standard 'index.js' 'tasks/**/*.js' 'test/**/*.js' | snazzy",
"karma": "karma start test/karma.conf.js",
"test": "npm run lint && npm run karma",
"test:watch": "npm run karma -- --single-run false",
"update-vendor": "node tasks/build-vendored-file.js",
"deploy:docs": "gh-pages -d examples",
"examples:build": "browserify index.js > examples/bundle.js -s SoundcloudWidget"
},
"author": "Blade Barringer <blade@crookedneighbor.com> (http://crookedneighbor.com/)",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/crookedneighbor/soundcloud-widget.git"
},
"files": [
"index.js",
"vendor/soundcloud-widget.js"
],
"keywords": [
"soundcloud",
"iframe"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/crookedneighbor/soundcloud-widget/issues"
},
"homepage": "https://github.com/crookedneighbor/soundcloud-widget#readme",
"devDependencies": {
"browserify": "^16.2.0",
"chai": "^4.1.0",
"gh-pages": "^2.0.1",
"karma": "^4.1.0",
"karma-browserify": "^6.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"mocha": "^6.1.4",
"request": "^2.73.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.0.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"watchify": "^3.7.0"
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"context",
"describe",
"expect",
"it",
"xcontext",
"xdescribe",
"xit"
]
},
"dependencies": {
"promise-polyfill": "^8.1.0"
}
}