forked from LivelyKernel/lively4-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "lively4-core",
"version": "0.0.1",
"description": "An extensible module loader to load data and scripts from various locations and optionally perform transformations on this data. Powered by Service Worker.",
"keywords": ["lively", "lively4", "module", "modules", "loader", "compiler"],
"homepage": "https://github.com/onsetsu/lively4-core/",
"bugs": {
"url": "https://github.com/onsetsu/lively4-core/issues",
"email": "todo@todo.com"
},
"license": "MIT",
"contributors": [
{
"name": "Stefan Lehmann",
"email": "stefan.lehmann@student.hpi.uni-potsdam.de",
"url": "https://github.com/onsetsu"
},
{
"name": "Jens Lincke",
"email": "jens.lincke@hpi.uni-potsdam.de"
},
{
"name": "Tim Felgentreff",
"email": "tim.felgentreff@hpi.uni-potsdam.de"
}
],
"files": [
"bootworker.js",
"TODO"
],
"main": "bootworker.js",
"bin": "TODO",
"man": "TODO",
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "https://github.com/onsetsu/lively4-core.git"
},
"scripts": {
"test": "karma start karma.conf.js --single-run"
},
"dependencies": {},
"devDependencies": {
"browserify": "^11.0.0",
"chai": "^1.9.1",
"karma": "^0.13.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.10",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"karma-requirejs": "^0.2.2",
"mocha": "^2.2.5",
"requirejs": "^2.1.20",
"sinon-chai": "^2.8.0",
"systemjs": "^0.18.10"
},
"engines": {
"node": ">= 0.12.4",
"npm": "~2.10.1"
}
}