-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "context-traits",
"title": "Context Traits",
"description": "Dynamic behaviour adaptation through run-time trait recomposition",
"version": "0.0.1",
"homepage": "https://github.com/tagae/context-traits",
"copyright": "© 2012—2015 UCLouvain",
"contributors": [
"Sebastián González <[email protected]>",
"Marius Colăcioiu <[email protected]>"
],
"keywords": [
"context",
"traits",
"adaptation",
"composition"
],
"repository": {
"type": "git",
"url": "git://github.com/tagae/context-traits.git"
},
"bugs": {
"url": "https://github.com/tagae/context-traits/issues"
},
"licenses": [
{
"type": "Apache Licence, Version 2.0",
"url": "https://github.com/tagae/context-traits/blob/master/LICENSE.md"
}
],
"engines": {
"node": "19.x",
"npm": "9.x"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"traits": "0.4.x",
"underscore": "1.13.x"
},
"devDependencies": {
"grunt": "0.4.x",
"grunt-clean": "0.4.x",
"grunt-docco": "0.5.x",
"underscore.string": "3.3.x",
"coffee-script": "1.12.x",
"docco": "0.9.x"
},
"main": "dist/context-traits.js"
}