-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "app-sandbox",
"version": "3.0.0",
"description": "Sandbox for scalable javascript applications. Support for event-driven architecture. ~100% test covered.",
"main": "lib/sandbox.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "grunt karma&&grunt test-node",
"test-node": "istanbul cover --hook-run-in-contex node_modules/jasmine-node/bin/jasmine-node -- --match \"test\" test"
},
"repository": {
"type": "git",
"url": "git://github.com/szarouski/sandbox.git"
},
"author": {
"name": "Sergey Zarouski",
"homepage": "http://webuniverse.io"
},
"license": "Unlicense",
"bugs": {
"url": "https://github.com/szarouski/sandbox/issues"
},
"homepage": "https://github.com/szarouski/sandbox",
"dependencies": {
"lodash": "^4.0.0",
"simple-permissions": "^5.0.1"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-githooks": "^0.3.1",
"grunt-karma": "~0.8.3",
"istanbul": "^0.3.13",
"jasmine-node": "~2.0.0",
"karma": "~0.12.17",
"karma-chrome-launcher": "~0.1.4",
"karma-coverage": "~0.2.4",
"karma-firefox-launcher": "~0.1.3",
"karma-ie-launcher": "~0.1.5",
"karma-jasmine": "~0.2.0",
"karma-requirejs": "~0.2.2",
"requirejs": "~2.1.14",
"shelljs": "^0.4.0"
}
}