-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.6 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
{
"name": "treelist.js",
"version": "0.0.1",
"description": "ToDo",
"keywords": [
"javascript"
],
"main": "src/TreeList.js",
"scripts": {
"build": "webpack --env.version=0.0.1 --progress",
"dev": "webpack --env.version=0.0.1 --env.dev=true --progress",
"web-server": "http-server -p 1337 -c-1 -o example.html",
"doc": "jsdoc -c doc/jsDoc.json",
"test": "karma start test/karma.config.js",
"testdev": "karma start test/karma.config.js --dev=true",
"beforecommit": "npm run test && npm run build && npm run doc"
},
"homepage": "https://github.com/ArthurBeaulieu/TreeList.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ArthurBeaulieu/TreeList.js.git"
},
"bugs": {
"url": "https://github.com/ArthurBeaulieu/TreeList.js/issues"
},
"author": "Arthur Beaulieu",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": ">=7.1.2",
"@babel/preset-env": ">=7.11.0",
"babel-loader": ">=8.0.4",
"clean-webpack-plugin": ">=3.0.0",
"css-loader": ">=1.0.0",
"http-server": ">=0.12.3",
"jasmine": ">=3.2.0",
"jasmine-core": ">=3.3.0",
"jsdoc": ">=3.5.5",
"karma": ">=5.0.9",
"karma-chrome-launcher": ">=2.2.0",
"karma-firefox-launcher": ">=1.1.0",
"karma-jasmine": ">=1.1.2",
"karma-sourcemap-loader": ">=0.3.7",
"karma-webpack": ">=4.0.0",
"mini-css-extract-plugin": ">=0.4.5",
"node-sass": ">=4.13.1",
"optimize-css-assets-webpack-plugin": ">=5.0.1",
"sass-loader": ">=7.1.0",
"tui-jsdoc-template": ">=1.2.2",
"webpack": ">=4.16.5",
"webpack-cli": ">=3.1.0"
}
}