forked from beradrian/jsbandwidth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (50 loc) · 1.39 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
{
"name": "jsbandwidth",
"license": "MIT",
"version": "1.1.2",
"description": "JsBandwidth - the JavaScript net speed test",
"author":
{
"name": "Adrian Ber",
"email": "beradrian@yahoo.com"
},
"repository":
{
"type": "git",
"url": "https://github.com/beradrian/jsbandwidth.git"
},
"main": "index.js",
"dependencies":
{
"extend": "latest"
, "xhrpromise": "latest"
},
"devDependencies":
{
"angular": ">=1.4.7",
"angular-mocks": "1.4.7",
"babel-cli": "latest",
"babel-plugin-add-module-exports": "latest",
"babel-preset-es2015": "latest",
"jasmine": "latest",
"jasmine-ajax": "latest",
"jasmine-core": "latest",
"js-quantities": "latest",
"karma": "latest",
"karma-babel-preprocessor": "latest",
"karma-browserify": "latest",
"karma-chrome-launcher": "latest",
"karma-commonjs": "latest",
"karma-firefox-launcher": "latest",
"karma-jasmine": "latest",
"karma-jasmine-ajax": "latest",
"uglifyify": "latest"
},
"scripts":
{
"browserify": "node_modules/.bin/browserify src/main/js/jsbandwidth.js -o jsbandwidth.js -t [ babelify --presets [ es2015 ] --plugins [ babel-plugin-add-module-exports ] uglifyify]",
"babel": "node_modules/.bin/babel src/main/js/jsbandwidth.js -o index.js --presets es2015 --plugins babel-plugin-add-module-exports",
"postinstall": "npm run babel",
"test": "node_modules/.bin/karma start src/test/karma.conf.js"
}
}