-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.61 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
{
"name": "tmc-analytics",
"version": "0.0.0-alpha3",
"description": "TMC analytics in Javascript",
"files": [
"build/"
],
"main": "build/index.js",
"scripts": {
"lint": "eslint src",
"prepublish": "mkdir -p build && babel src/ -d build/",
"build": "webpack --env.prod -p",
"dev": "webpack --progress --watch --env.dev",
"test-watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"validate": "npm-run-all --parallel validate-webpack:*",
"validate-webpack:dev": "webpack-validator webpack.config.js --env.dev",
"validate-webpack:prod": "webpack-validator webpack.config.js --env.prod"
},
"devDependencies": {
"babel": "6.3.13",
"babel-cli": "^6.9.0",
"babel-core": "6.1.18",
"babel-eslint": "5.0.0",
"babel-loader": "6.1.0",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "6.3.13",
"babel-runtime": "^6.9.2",
"chai": "3.4.1",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.2.4",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"mocha": "2.3.4",
"npm-run-all": "^2.2.0",
"webpack": "2.1.0-beta.13",
"webpack-validator": "^2.1.3",
"yargs": "3.32.0"
},
"author": "Henrik Nygren",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.9.2",
"jszip": "^3.0.0",
"whatwg-fetch": "^1.0.0"
}
}