forked from mbraak/jqTree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.05 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
{
"name": "jqtree",
"version": "1.4.8",
"description": "Tree widget for jQuery",
"keywords": [
"jquery-plugin",
"tree"
],
"license": "Apache-2.0",
"main": "./lib/tree.jquery.js",
"types": "./src/tree.jquery.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mbraak/jqtree"
},
"scripts": {
"test": "karma start --browsers ChromeHeadlessNoSandbox --single-run",
"lint": "tslint src/*.ts src_test/*.ts",
"watch": "webpack",
"production": "webpack --config webpack.config.production --mode production && cp build/tree.jquery.js . && webpack --config webpack.config.production.debug --mode production && cp build/tree.jquery.js ./tree.jquery.debug.js && gulp",
"karma": "karma start",
"jekyll-build": "bundle exec jekyll build",
"jekyll-serve": "bundle exec jekyll serve",
"devserver": "webpack-dev-server --mode development",
"prettier": "prettier src/*.ts src_test/*.ts --write --tab-width 4",
"coveralls": "coveralls < coverage/lcov.info"
},
"dependencies": {
"jquery": ">=1.9"
},
"devDependencies": {
"@types/jquery": "^3.3.5",
"@types/jquery-mockjax": "^2.0.31",
"@types/qunit": "^2.5.1",
"coveralls": "^3.0.2",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.3",
"gulp-sass": "^4.0.1",
"gulp-typescript": "^4.0.2",
"istanbul-instrumenter-loader": "^3.0.1",
"jquery-mockjax": "^2.4.0",
"jsonfile": "^4.0.0",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.1.1",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-qunit": "^2.1.0",
"karma-webpack": "^3.0.0",
"lodash.template": "^4.4.0",
"prettier": "^1.13.7",
"qunit": "^2.6.1",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"typescript": "^2.9.1",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}