-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 728 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 728 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
{
"name": "vprof-ui",
"author": "nvdv",
"main": "vprof/ui/main.js",
"dependencies": {
"browserify": "13",
"browserify-css": "latest",
"d3": "4.9.1",
"eslint": "latest",
"highlight.js": "latest",
"jest": "18.0.0",
"uglify-es": "3.0.24",
"watchify": "3.7.0"
},
"scripts": {
"lint": "eslint vprof/ui",
"build": "browserify -g browserify-css vprof/ui/main.js | uglifyjs -o vprof/ui/vprof_min.js",
"watch": "watchify vprof/ui/main.js -o vprof/ui/vprof_min.js -v",
"test": "jest"
},
"browserify": {
"transform": [
"browserify-css"
]
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "http://github.com/nvdv/vprof.git"
}
}