-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "generator-universal-module",
"version": "1.4.2",
"description": "A Yeoman generator for creating universal JavaScript modules that work everywhere using ES2015, Babel, Webpack, Mocha, Chai, Karma, Isparta, ESLint",
"license": "MIT",
"main": "app/index.js",
"repository": "alferov/generator-universal-module",
"author": {
"name": "Philipp Alferov",
"email": "philipp.alferov@gmail.com",
"url": "https://github.com/alferov"
},
"scripts": {
"test": "mocha",
"tdd": "npm run test -- --watch --recursive",
"update": "git submodule update --init --recursive && git submodule foreach --recursive git fetch && git submodule foreach git merge origin master"
},
"files": [
"test",
"app"
],
"keywords": [
"yeoman-generator",
"es6",
"es2015",
"universal",
"isomorphic",
"boilerplate"
],
"dependencies": {
"chalk": "^1.0.0",
"underscore.string": "^3.2.3",
"yeoman-assert": "^2.1.1",
"yeoman-generator": "^0.22.5",
"yeoman-test": "^1.0.0",
"yosay": "^1.1.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"json": "^9.0.3",
"mocha": "^2.4.5"
}
}