-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
32 lines (32 loc) · 977 Bytes
/
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": "epoxy",
"version": "1.0.0",
"description": "web dependencies for the {epoxy} R package",
"main": "index.js",
"scripts": {
"copy": "npm run copy:mustache && npm run copy:hint.css",
"copy:mustache": "cpy 'mustache.min.js' ../../inst/lib/mustache --cwd node_modules/mustache/",
"copy:hint.css": "cpy 'hint.min.css' ../../inst/lib/hint.css --cwd node_modules/hint.css/",
"lint": "standard inst/srcjs/*.js",
"lint:fix": "standard --fix inst/srcjs/*.js",
"build": "npm run lint:fix && npm run copy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadenbuie/epoxy.git"
},
"author": "Garrick Aden-Buie",
"license": "MIT",
"bugs": {
"url": "https://github.com/gadenbuie/epoxy/issues"
},
"homepage": "https://pkg.garrickadenbuie.com/epoxy",
"dependencies": {
"hint.css": "^2.7.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"cpy-cli": "^4.2.0",
"standard": "^17.0.0"
}
}