-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
{
"name": "iseed",
"description": "Frontend project template (for a quick star), with full test and build infrastructure.",
"version": "1.1.1",
"author": "Andrey Morozov <[email protected]>",
"contributors": [
{
"name": "Alexander Tarmolov",
"email": "[email protected]"
}
],
"keywords": [
"frontend",
"project",
"stub",
"seed",
"template",
"infrastructure",
"hooks",
"hook",
"lint",
"test",
"development",
"karma",
"webpack"
],
"repository": "https://github.com/alt-j/iseed",
"devDependencies": {
"autoprefixer-loader": "1.0.0",
"babel-core": "5.8.23",
"babel-loader": "5.3.2",
"chai": "1.9.2",
"core-js": "1.1.4",
"css-loader": "0.9.0",
"eslint": "1.3.1",
"git-hooks": "1.0.0",
"html-webpack-plugin": "1.6.1",
"jscs": "2.1.1",
"karma": "0.13.9",
"karma-cli": "0.1.0",
"karma-mocha": "0.2.0",
"karma-phantomjs-launcher": "0.2.1",
"karma-sinon-chai": "1.0.0",
"karma-webpack": "1.7.0",
"mocha": "2.0.1",
"mocha-loader": "0.7.0",
"phantomjs": "1.9.18",
"sinon": "1.9.1",
"style-loader": "0.8.2",
"stylus-loader": "0.4.0",
"webpack": "1.4.13",
"webpack-dev-server": "1.10.1"
},
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack -p",
"validate": "npm run lint && npm run test",
"lint": "jscs . && eslint .",
"test": "karma start karma.conf.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}