-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 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
{
"name": "white-label-js",
"version": "1.0.4",
"description": "Create a music platform on the web with whitelabel.js",
"main": "lib/whitelabel.js",
"browser": "./browser/whitelabel.min.js",
"scripts": {
"build": "webpack --mode=build",
"dev": "webpack --progress --colors --watch --mode=dev",
"build-npm": "babel src/index.js --out-file lib/whitelabel.js --source-maps inline",
"sandbox": "node liveserver.js",
"test": "mocha-phantomjs --ssl-protocol=any test/test.html"
},
"dependencies": {
"axios": "^0.15.2",
"merge": "^1.2.0"
},
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "^6.16.0",
"babel-core": "^6.1.18",
"babel-eslint": "7.0.0",
"babel-loader": "^6.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"bluebird": "^3.4.1",
"chai": "3.5.0",
"eslint": "3.8.1",
"eslint-loader": "1.6.0",
"eslint-plugin-babel": "^3.2.0",
"live-server": "^1.0.0",
"mocha": "^3.1.2",
"mocha-phantomjs": "^4.0.2",
"webpack": "1.13.2",
"webpack-notifier": "^1.3.0",
"yargs": "6.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NoonPacific/White-Label-JS.git"
},
"keywords": [
"library",
"browser",
"npm",
"noon",
"pacific",
"NoonPacific",
"white",
"label",
"WhiteLabel",
"WhiteLabel.js"
],
"author": "Jake Runzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoonPacific/White-Label-JS/issues"
},
"homepage": "https://github.com/NoonPacific/White-Label-JS"
}