forked from tagae/context-traits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
{
"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 \n 2016- Uniandes",
"author": {
"name": "Sebastián González",
"email": "[email protected]"
},
"contributors": [
"Sebastián González <[email protected]>",
"Marius Colăcioiu <[email protected]>",
"Nicolás Cardozo <[email protected]>"
],
"keywords": [
"context",
"traits",
"adaptation",
"composition"
],
"repository": {
"type": "git",
"url": "git://github.com/ncardozo/context-traits.git"
},
"bugs": {
"url": "https://github.com/ncardozo/context-traits/issues"
},
"licenses": [
{
"type": "Apache Licence, Version 2.0",
"url": "https://github.com/tagae/context-traits/blob/master/LICENSE.md"
}
],
"engines": {
"node": ">=0.12.0",
"npm": "~2.7.1"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"traits": "0.4.x",
"underscore": "1.3.x"
},
"devDependencies": {
"docco": "0.4.x",
"grunt": "1.2.x",
"grunt-contrib-clean": ">=0.6.0",
"grunt-contrib-concat": ">=0.5.1",
"grunt-contrib-jshint": ">=0.11.1",
"grunt-contrib-nodeunit": "^2.1.0",
"grunt-contrib-qunit": "^4.0.0",
"grunt-contrib-uglify": "^5.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-docco": "^0.5.0",
"terser-webpack-plugin": "^5.0.0",
"underscore.string": "3.3.x"
},
"main": "dist/context-traits.js"
}