-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.16 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": "application-prototype",
"version": "1.29.1",
"description": "Application builder - prototype",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "rm -rf ./documentation/* ; jsdoc -c jsdoc.json ; ",
"docs-dictionary": "jsdoc -c jsdoc.json -t node_modules/tsd-jsdoc/dist -r -d . ; rm index.d.ts ; cat types.d.ts > index.d.ts ; echo 'declare module \"application-prototype\" {\\n' >> index.d.ts ; echo '\nfunction application(): ApplicationPrototype.Instance; ' >> index.d.ts ; echo '\nfunction builder(): ApplicationPrototype.Builder; ' >> index.d.ts ; echo '}' >> index.d.ts ; rm types.d.ts",
"docs-dictionary-dev": "npm run docs-dictionary; while true; do find . -not -path './documentation' | entr -pd npm run docs-dictionary; done",
"docs-dev": "npm run docs; while true; do find . -not -path './documentation' | entr -pd npm run docs; done",
"docs-preview": "live-server --wait=6500 --no-browser documentation",
"build": "npm run docs-dictionary ; npm run docs "
},
"repository": {
"type": "git",
"url": "https://github.com/sergiu-gordienco/application-prototype.git"
},
"keywords": [
"application-builder",
"require",
"node",
"custom",
"application builder",
"application prototype",
"prototype",
"application-prototype",
"nodejs-mvc",
"application pattern",
"application framework",
"application model",
"pattern",
"controller",
"mapping"
],
"jshintConfig": {
"bitwise": false,
"freeze": false,
"loopfunc": true,
"laxbreak": true,
"multistr": true,
"-W002": true,
"-W014": true,
"-W069": true,
"-W032": true
},
"author": "Sergiu Gordienco <sergiu.gordienco@gmail.com> ( https://sgapps.io/about-us )",
"license": "Creative Commons Attribution-NonCommercial 4.0 / or Granted by SGApps Labs",
"bugs": {
"url": "https://github.com/sergiu-gordienco/application-prototype/issues"
},
"homepage": "https://github.com/sergiu-gordienco/application-prototype",
"devDependencies": {
"docdash": "^1.2.0",
"minami": "^1.2.3",
"jsdoc": "^3.6.5",
"tsd-jsdoc": "^2.4.0"
}
}