-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
{
"name": "word-counter",
"version": "1.0.0",
"description": "Simple application that reports on word & character count statistics.",
"private": true,
"main": "index.js",
"scripts": {
"dev": "node index.js --mode dev --watch",
"test": "karma start config/test/karma.config.js",
"live": "node index.js --mode live"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lewie9021/word-counter.git"
},
"keywords": [
"word",
"counter",
"stats",
"characters",
"text"
],
"author": "Lewis Barnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/lewie9021/word-counter/issues"
},
"homepage": "https://github.com/lewie9021/word-counter#readme",
"dependencies": {
"babel-core": "5.8.23",
"babel-loader": "5.3.2",
"babel-runtime": "5.8.20",
"bootstrap-sass": "3.3.5",
"commander": "2.8.1",
"css-loader": "0.16.0",
"expose-loader": "0.7.0",
"extract-text-webpack-plugin": "0.8.2",
"file-loader": "0.8.4",
"html-webpack-plugin": "1.6.1",
"imports-loader": "0.6.5",
"node-sass": "3.3.2",
"react": "0.13.3",
"react-bootstrap": "0.25.1",
"sass-loader": "2.0.1",
"url-loader": "0.5.6",
"webpack": "1.12.0",
"webpack-configurator": "0.2.0",
"webpack-dev-server": "1.10.1"
},
"devDependencies": {
"babel-plugin-rewire": "0.1.22",
"karma": "0.13.9",
"karma-chai": "0.1.0",
"karma-chai-sinon": "0.1.5",
"karma-chrome-launcher": "0.2.0",
"karma-ie-launcher": "0.2.0",
"karma-mocha": "0.2.0",
"karma-mocha-reporter": "1.1.1",
"karma-source-map-support": "1.1.0",
"karma-sourcemap-loader": "0.3.5",
"karma-webpack": "1.7.0",
"mocha": "2.3.0",
"react-shallow-query": "1.0.1",
"sinon-chai": "2.8.0"
}
}