-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 KB
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
42
43
44
45
46
47
48
49
50
51
{
"name": "interlock-static-site-config",
"version": "0.2.0",
"description": "Config helpers for building a static site with Interlock.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js src/",
"build": "babel -d lib/ src/",
"watch": "watch 'npm run build' src/ -d",
"prepublish": "npm run check && npm run build",
"preversion": "npm run check && npm run build",
"check": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interlockjs/static-site-config.git"
},
"author": "Dale Bustad <dale@divmain.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/interlockjs/static-site-config/issues"
},
"homepage": "https://github.com/interlockjs/static-site-config",
"dependencies": {
"autoprefixer": "^6.4.1",
"glob": "^7.0.6",
"interlock-babili": "^0.2.0",
"interlock-css": "^0.1.0",
"interlock-html": "^0.1.1",
"interlock-pug": "^0.1.0",
"interlock-raw": "^0.1.3",
"interlock-stylus": "^0.1.1",
"js-yaml": "^3.6.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.0",
"babel-eslint": "^5.0.0",
"babel-polyfill": "^6.6.1",
"babel-preset-nodejs-lts": "^1.2.1",
"chai": "^3.5.0",
"eslint": "2.2.0",
"@divmain/eslint-config-defaults": "^10.0.0",
"eslint-plugin-filenames": "^0.2.0",
"mocha": "^2.4.5",
"require-dir": "^0.3.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"watch": "^0.17.1"
}
}