forked from vecnatechnologies/backbone-torso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.68 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
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
100
101
{
"name": "backbone-torso",
"version": "0.8.11",
"repository": {
"type": "git",
"url": "https://github.com/vecnatechnologies/backbone-torso"
},
"scripts": {
"build": "gulp && npm run test && npm run doc",
"prepublish": "gulp prepublish && npm run doc",
"test": "npm run test-func && npm run test-import",
"test-func": "karma start",
"watch:test-func": "npm run test-func -- karma.conf.dev.js --debug",
"test-import": "gulp test-vendor-globals && gulp test-vendor-commonJs",
"doc": "mkdir docs/js -p && yuidoc",
"doc:dev": "mkdir docs/js -p && yuidoc --server",
"watch-import": "gulp watch-import & npm run doc:dev",
"clean": "gulp clean",
"watch": "gulp watch & npm run watch:test-func & npm run watch-import & npm run doc:dev"
},
"main": "modules/torso.js",
"dependencies": {
"backbone": "1.3.3",
"backbone-nested": "2.0.4",
"backbone.stickit": "0.9.2",
"underscore": "1.8.3"
},
"devDependencies": {
"browserify": "^12.0.2",
"del": "^1.1.1",
"gulp": "^3.8.8",
"gulp-cached": "^1.0.2",
"gulp-concat-util": "^0.5.1",
"gulp-handlebars": "5.0.1",
"gulp-if": "^1.2.5",
"gulp-jasmine": "2.0.0",
"gulp-jshint": "^1.9.2",
"gulp-load-plugins": "^0.7.0",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.5.0",
"gulp-uglify": "^1.0.1",
"gulp-util": "^3.0.1",
"gulp-wrap": "0.9.0",
"handlebars": "4.0.11",
"hbsfy": "^2.6.0",
"jasmine": "2.5.3",
"jasmine-core": "^2.4.1",
"jasmine-reporters": "2.0.2",
"jasmine-spec-reporter": "2.1.0",
"jquery": "2.2.4",
"jquery-mockjax": "2.2.1",
"jsdom": "3.0.2",
"jshint-stylish": "^1.0.1",
"karma": "^0.13.19",
"karma-browserify": "^5.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.0",
"lazypipe": "^0.2.2",
"merge-stream": "^0.1.7",
"minimist": "1.1.0",
"node-dir": "0.1.8 ",
"path": "0.11.14",
"phantomjs-prebuilt": "^2.1.4",
"promise": "6.1.0",
"require-dir": "^0.1.0",
"requireify": "^0.2.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^3.7.0",
"yuidocjs": "0.10.2"
},
"engines": {
"node": ">=0.8.0"
},
"contributors": [
{
"name": "Kent Willis",
"email": "kentmw@gmail.com"
},
{
"name": "Ariel Wexler",
"email": "arielwex@gmail.com"
},
{
"name": "Josh Young",
"email": "jyoung@vecna.com"
}
],
"yuidoc": {
"name": "backbone-torso",
"description": "backbone-torso",
"options": {
"linkNatives": true,
"outdir": "./docs/js",
"paths": [
"modules"
]
}
}
}