-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.47 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
{
"name": "migme",
"version": "5.6.0",
"description": "Migme JavaScript SDK",
"main": "lib/sdk.js",
"scripts": {
"pretest": "eslint .",
"test": "npm run mocha && npm run karma",
"mocha": "babel-node ./node_modules/.bin/isparta cover _mocha -- -R spec",
"karma": "karma start karma.config.js",
"clean": "rimraf lib | rimraf coverage",
"prebuild": "npm run clean",
"build": "webpack --output-filename sdk.js --config webpack.config.prod.js",
"prepublish": "npm run build",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/migme/beachball.git"
},
"keywords": [
"migme",
"sdk"
],
"author": "Migme (https://mig.me)",
"contributors": [
"Ed Moore <[email protected]>",
"Sebastiaan Deckers <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/migme/beachball/issues"
},
"homepage": "https://github.com/migme/beachball",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"codecov": "^1.0.1",
"eslint": "^2.9.0",
"eslint-config-migme": "^2.1.0",
"imports-loader": "^0.6.5",
"isparta": "^4.0.0",
"isparta-instrumenter-loader": "^1.0.0",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chai-plugins": "^0.7.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.2",
"karma-sauce-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.0",
"karma-source-map-support": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"lodash.assign": "^4.0.8",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "1.2.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.0"
},
"dependencies": {
"babel-plugin-transform-regenerator": "^6.8.0",
"bubbly": "^1.1.2",
"isomorphic-fetch": "^2.2.1",
"universal-localstorage": "^1.0.2",
"url-template": "^2.0.6"
},
"directories": {
"lib": "lib",
"test": "test"
}
}