This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "sumologic.js",
"version": "1.1.0",
"description": "Send logs to SumoLogic HTTP Endpoint",
"keywords": ["SumoLogic", "Logging", "logs"],
"main": "./dist/sumo_logic.js",
"scripts": {
"watch": "node_modules/.bin/babel src/sumo_logic.js --watch --out-file src/sumo_logic.js",
"build": "node_modules/.bin/babel src --out-dir dist/",
"test": "karma start karma.conf.js",
"prepublish": "yarn run build"
},
"author": "Imad Mouaddine",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"babel-runtime": "^6.6.1",
"eslint": "^6.0.1",
"install": "^0.8.2",
"jasmine": "^2.4.1",
"jasmine-ajax": "^3.2.0",
"jasmine-core": "^2.4.1",
"jasmine-es6": "^0.1.8",
"karma": "^0.13.22",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^0.3.8",
"karma-jasmine-ajax": "^0.1.13",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.8.0",
"npm": "^3.10.9",
"phantomjs-prebuilt": "^2.1.7",
"webpack": "^1.13.0"
},
"dependencies": {
"jquery": "^3.0.0"
},
"eslintConfig": {
"env": {
"browser": true,
"node": false
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
}
}