-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
33 lines (33 loc) · 817 Bytes
/
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
{
"name": "jstreetable",
"description": "table plugin for jstree",
"version": "1.0.0",
"url": "https://github.com/adamjimenez/jstree-table",
"author": {"name":"Adam Jimenez","url":"https://github.com/adamjimenez"},
"main": "jstreetable.js",
"dependencies": {
"jstree":">=3.0.0"
},
"keywords":[
"jquery",
"jstree",
"table",
"javascript"
],
"repository": {
"type" : "git",
"url" : "https://github.com/adamjimenez/jstree-table.git"
},
"license" : "MIT",
"devDependencies": {
"eslint": "^7.10.0",
"grunt": ">=1.3.0",
"grunt-contrib-jasmine": "nathancahill/grunt-contrib-jasmine",
"jasmine": "^2.3.2",
"uglifyjs": "^2.4.10"
},
"scripts": {
"test": "./node_modules/.bin/grunt jasmine",
"build": "./node_modules/.bin/uglifyjs -m -o jstreetable.min.js jstreetable.js"
}
}