-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "drishti",
"version": "1.0.0",
"description": "Visual",
"main": "server.js",
"directories": {
"example": "example"
},
"dependencies": {
"express":"latest",
"request":"latest",
"serve-static":"latest",
"html-inject-script":"latest",
"opn":"latest",
"body-parser":"latest",
"colors":"latest",
"cli-table":"latest",
"url":"latest"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf build && mkdir -p build/js/lib/",
"copy:build":"cp src/js/lib/drishti.js build/js/lib/",
"minify": "uglifyjs src/js/lib/drishti.js --output build/js/lib/drishti.min.js",
"copy:js":"cp build/js/lib/*.js js/lib/",
"build": "npm run clean && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rupeshmore/drishti.git"
},
"author": "Rupesh More",
"license": "MIT",
"bugs": {
"url": "https://github.com/rupeshmore/drishti/issues"
},
"homepage": "https://github.com/rupeshmore/drishti#readme",
"devDependencies": {
"uglify-js": "^2.6.2"
}
}