-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 940 Bytes
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
{
"name": "mbt-planner",
"keywords": [
"planning",
"browser",
"javascript",
"plan",
"task",
"schedule",
"html"
],
"version": "1.1.0.1",
"license": "MIT",
"homepage": "http://planner.madbuildertools.com",
"author": "thierry schmit <thierry.schmit@gmail.com>",
"dependencies": {
"jquery": "^3.3.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"babel-preset-minify": "^0.5.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"jsdom": "^13.1.0",
"minami": "^1.2.3"
},
"repository": {
"url": "https://github.com/tschmit/MbtPlanner",
"type": "git"
},
"files": [
"dist/",
"readme.md"
],
"scripts": {
"bjs": "node build.js",
"bb": "babel src/MbtPlanner.js --out-file dist/MbtPlanner.min.js --source-maps",
"test": "jest",
"doc": "jsdoc --configure jsdoc.conf.json src/MbtPlanner.js"
},
"babel": {
"presets": [
"minify"
]
}
}