This repository has been archived by the owner on Sep 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
58 lines (58 loc) · 1.94 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
{
"name": "scaleapp",
"version": "0.5.0",
"main": "./dist/scaleApp",
"description": "scaleApp is a JavaScript framework for scalable and maintainable One-Page-Applications",
"author": "Markus Kohlhase <[email protected]>",
"homepage": "http://www.scaleapp.org",
"bugs": "http://github.com/flosse/scaleApp/issues",
"contributors": [
"Markus Kohlhase",
"Johann Philipp Strathausen",
"Makeev Vitaliy"
],
"license": "MIT",
"engine": "node",
"devDependencies": {
"beautiful-docs": "~1.0.3",
"chai": "~1.10.0",
"coffee-script": "~1.8.0",
"coffeelint": "^1.8.1",
"coveralls": "~2.11.2",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-coffee": "~0.12.0",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-uglify": "~0.7.0",
"grunt-contrib-watch": "~0.6.1",
"istanbul": "~0.3.5",
"karma": "~0.12.31",
"karma-coffee-preprocessor": "^0.2.1",
"karma-coverage": "~0.2.7",
"karma-mocha": "~0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"mocha": "~2.1.0",
"phantomjs": "~1.9.13",
"sinon": "~1.12.2",
"sinon-chai": "~2.6.0",
"sloc": "~0.1.9",
"uglify-js": "~2.4.16"
},
"repository": {
"type": "git",
"url": "git://github.com/flosse/scaleApp.git"
},
"maintainers": [
{
"name": "Markus Kohlhase",
"email": "[email protected]",
"web": "http://github.com/flosse/"
}
],
"scripts": {
"lint": "./node_modules/.bin/coffeelint src/ plugins/src",
"test": "npm run lint && ./node_modules/grunt-cli/bin/grunt && ./node_modules/.bin/mocha && ./node_modules/karma/bin/karma start",
"bfdocs": "cat ./README.markdown > ./README.md && cat ./plugins/README.md >> ./README.md && ./node_modules/beautiful-docs/bin/bfdocs bfdocs.json ./docs",
"coveralls": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}