forked from klee-contrib/focus-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.24 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.24 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
{
"name": "focusjs",
"version": "0.3.1",
"description": "Focus library.",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"build": "gulp build",
"api": "node ./example/api/server.js",
"docco": "docco lib/helpers/* --layout parallel --output docs/helpers; docco README.md lib/main.js --layout parallel --output docs/helpers",
"code-report": "./node_modules/plato/bin/plato -r -d report -l .jshintrc -t 'Framework javascript Kleegroup.' lib/*"
},
"repository": {
"type": "git",
"url": "https://github.com/KleeGroup/focus"
},
"keywords": [
"fmk",
"spa",
"JavaScript"
],
"author": "Pierre Besson <pierre.besson@kleegroup.com>",
"readmeFilename": "README.md",
"documentation": "http://kleegroup.github.io/focus-docs/",
"bin": {
"mocha": "/node_modules/mocha/bin/mocha",
"_mocha": "/node_modules/mocha/bin/_mocha"
},
"browserify": {
"transform": [
"coffeeify",
[
"hbsfy",
{
"extensions": [
"hbs"
],
"precompilerOptions": {
"knownHelpersOnly": true,
"knownHelpers": {
"t": true
}
}
}
]
]
},
"dependencies": {
"backbone": "~1.1.2",
"backbone-validation": "~0.9.1",
"bluebird": "~2.3.2",
"coffee-script": "^1.8.0",
"handlebars": "~1.3.0",
"i18next": "~1.7.4",
"underscore": "~1.7.0",
"hbsfy": "~2.2.1"
},
"devDependencies": {
"vinyl-source-stream": "~1.0.0",
"browserify": "~8.0.3",
"coffeeify": "~1.0.0",
"gulp-handlebars": "~2.2.0",
"gulp-wrap": "~0.3.0",
"sinon": "~1.10.3",
"chai": "~1.9.1",
"sinon-chai": "~2.5.0",
"browser-sync": "~1.8.3",
"eslint": "^0.8.2",
"express": "~4.9.4",
"gulp": "~3.8.8",
"gulp-coffee": "~2.2.0",
"gulp-coffeelint": "~0.4.0",
"gulp-concat": "~2.4.1",
"gulp-declare": "~0.3.0",
"gulp-define-module": "~0.1.1",
"gulp-eslint": "^0.1.8",
"gulp-if": "~1.2.4",
"gulp-jsdoc": "^0.1.4",
"gulp-jshint": "~1.8.4",
"gulp-markdox": "^0.1.1",
"gulp-util": "~3.0.1",
"hapi": "^6.9.0",
"jshint-stylish": "~1.0.0",
"mocha": "~1.21.4"
}
}