-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.29 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.29 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "angular-module",
"version": "0.0.0",
"description": "Starter kit for Angular Applications using Browserify",
"main": "index.js",
"scripts": {
"start": "gulp build && node server",
"watch": "gulp watch",
"test": "gulp test",
"integration": "pioneer"
},
"repository": {
"type": "git",
"url": "https://github.com/jneveux/angularmodule.git"
},
"keywords": [
"AngularJS",
"UNDERSCORE",
"browserify",
"ECMAScript6"
],
"author": "Jean Neveux <jean.neveux@gmail.com>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/jneveux/angularmodule/issues"
},
"homepage": "https://github.com/jneveux/angularmodule",
"devDependencies": {
"backbone": "1.1.2",
"babel": "^4.6.3",
"babelify": "^5.0.3",
"bluebird": "^2.7.1",
"body-parser": "^1.10.1",
"browser-sync": "^1.9.0",
"browserify": "^8.1.1",
"browserify-shim": "^3.8.2",
"chai": "^1.10.0",
"del": "^1.1.1",
"express": "^4.11.0",
"gulp": "^3.8.10",
"gulp-autoprefixer": "^2.1.0",
"gulp-env": "^0.2.0",
"gulp-jshint": "^1.9.0",
"gulp-less": "^3.0.1",
"gulp-load-plugins": "^0.8.0",
"gulp-mocha": "^2.0.0",
"gulp-plumber": "^0.6.6",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-symlink": "^2.1.0",
"gulp-util": "^3.0.2",
"gulp-watch": "^3.0.0",
"jsdom": "^2.0.0",
"jshint-stylish": "^1.0.0",
"minimatch": "^2.0.1",
"mocha": "^2.1.0",
"morgan": "^1.5.1",
"pioneer": "^0.11.0",
"proxyquire": "^1.3.0",
"request": "^2.51.0",
"selenium-webdriver": "^2.44.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^2.2.1",
"yargs": "^1.3.3"
},
"dependencies": {
"angular2": "2.0.0-alpha.25",
"jquery": "^2.1.3",
"lodash": "^2.4.1"
},
"browser": {
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify-shim": {
"bootstrap": {
"depends": [
"jquery:jQuery"
]
}
},
"browserify-swap": {
"@packages": [
"underscore"
],
"dist": {
"underscore.js$": "lodash"
}
},
"browserify": {
"transform": [
"babelify",
"browserify-swap",
"browserify-shim"
]
}
}