-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
32 lines (32 loc) · 1.14 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
{
"name": "simplehelpers.net",
"version": "1.0.0",
"private": true,
"description": "Micro-libraries for .Net that are safe and simple to use.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/khalidsalomao/SimpleHelpers.Net.git"
},
"author": "Khalid Salomão (https://github.com/khalidsalomao)",
"license": "MIT",
"bugs": {
"url": "https://github.com/khalidsalomao/SimpleHelpers.Net/issues"
},
"homepage": "https://github.com/khalidsalomao/SimpleHelpers.Net#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:docs": "start mkdocs serve & watch -p \"{*,docs/**/*}.md\" -c \"npm run build:docs\"",
"pretest:docs": "npm run build:docs",
"build:docs": "rd mkdocs_site\\ /s /q & md mkdocs_site & COPY README.md mkdocs_site\\index.md /y & XCOPY docs\\* mkdocs_site\\docs\\ /y /i",
"deploy:docs": "mkdocs gh-deploy --clean",
"predeploy:docs": "npm run build:docs",
"build:nuget": "node NugetPackaging/build.js"
},
"devDependencies": {
"async": "^2.0.0-rc.6",
"commander": "^2.9.0",
"watch-cli": "*",
"lodash": "*"
}
}