-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 906 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 906 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": "plugin-directory",
"description": "a template for plugin directories made by npm tags",
"version": "0.0.0",
"author": "Jeff Escalante",
"bugs": "https://github.com/carrot/plugin-directory/issues",
"dependencies": {
"reshape-standard": "^2.1.0",
"spike": "^2.0.2",
"spike-css-standards": "^2.0.1",
"spike-js-standards": "^2.0.2",
"spike-optimize": "^0.1.2",
"spike-records": "^2.0.0"
},
"devDependencies": {
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"homepage": "https://github.com/carrot/plugin-directory",
"license": "MIT",
"main": "app.js",
"private": "true",
"repository": "https://github.com/carrot/plugin-directory",
"scripts": {
"build": "spike compile",
"lint": "standard | snazzy",
"precommit": "npm run lint -s",
"prod": "NODE_ENV=production spike compile -e production",
"start": "spike watch"
}
}