-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.15 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
{
"name": "snowplow-es6-tracker",
"version": "0.1.0",
"description": "ES6 tracker for Snowplow",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/karma/bin/karma start",
"lint": "NODE_ENV=test ./node_modules/eslint/bin/eslint.js -c .eslintrc lib",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sircelsius/snowplow-es6-tracker.git"
},
"author": "Marc Bramaud <marc.bramaud@goeuro.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sircelsius/snowplow-es6-tracker/issues"
},
"homepage": "https://github.com/sircelsius/snowplow-es6-tracker#readme",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-es6-promise": "^1.0.0",
"babel-plugin-istanbul": "^2.0.0",
"babel-plugin-transform-regenerator": "^6.14.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"file-loader": "^0.9.0",
"isparta": "^4.0.0",
"karma": "^1.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"webpack": "^1.13.2"
},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"es6-object-assign": "^1.0.3",
"express": "^4.14.0",
"fetch-mock": "^5.1.5",
"immu": "^2.0.1",
"inject-loader": "^2.0.1",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"karma-chai": "^0.1.0",
"lodash": "^4.15.0",
"sinon": "git+https://github.com/sinonjs/sinon.git",
"sinon-chai": "^2.8.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.1"
}
}