-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.1 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
{
"name": "eva",
"description": "Functions to create and call functions and evaluate expressions",
"version": "1.0.0",
"homepage": "https://github.com/gamtiq/eva",
"author": {
"name": "Denis Sikuler"
},
"repository": {
"type": "git",
"url": "git://github.com/gamtiq/eva.git"
},
"bugs": {
"url": "https://github.com/gamtiq/eva/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/gamtiq/eva/blob/master/LICENSE-MIT"
}
],
"main": "src/eva",
"types": "./index.d.ts",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "1.0.3",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-jshint": "2.0.0",
"grunt-contrib-uglify": "4.0.0",
"grunt-jsdoc": "2.3.0",
"grunt-mocha-cli": "4.0.0",
"grunt-push-release": "0.1.9",
"grunt-umd": "3.0.0",
"ink-docstrap": "1.3.2"
},
"keywords": [
"create",
"function",
"dynamic",
"eval",
"evaluate",
"expression",
"execute",
"delegate",
"method",
"closure",
"map"
]
}