-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "how-to-implement-your-mvc",
"version": "1.0.0",
"description": "this is to tell you how to build a mvc framework",
"main": "index.js",
"directories": {
"doc": "doc"
},
"scripts": {
"dev": "node config/dev-server.js",
"test": "NODE_ENV=test karma start ./test/unit/karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iceprosurface/how-to-implement-your-mvc.git"
},
"keywords": [
"javascript",
"mvc",
"mvvm"
],
"author": "icepro",
"license": "MIT",
"bugs": {
"url": "https://github.com/iceprosurface/how-to-implement-your-mvc/issues"
},
"homepage": "https://github.com/iceprosurface/how-to-implement-your-mvc#readme",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.0.0",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^6.23.0",
"codecov": "^2.2.0",
"commondir": "^1.0.1",
"eslint": "^2.10.2",
"eslint-config-standard": "^5.1.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.3.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.8.1",
"ink-docstrap": "^1.3.0",
"jsdoc-webpack-plugin": "^0.0.2",
"karma": "^1.7.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.1",
"phantomjs-prebuilt": "^2.1.14",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.2",
"webpack-merge": "^4.1.0"
}
}