This repository was archived by the owner on Feb 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.38 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
{
"name": "es6modules-nodejs",
"version": "1.0.0",
"description": "## Intro",
"main": "index.js",
"private": true,
"scripts": {
"deploy": "npm run lint && npm run build && npm run push-to-github",
"lint": "standard",
"push-to-github": "scripts/deploy.sh",
"build": "mkdir -p build; cp scripts/*.png build; scripts/build.js; npm run browserify",
"browserify": "browserify -e scripts/index.js -o build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinheidegger/es6modules-nodejs.git"
},
"author": "Martin Heidegger <martin.heidegger@gmail.com>",
"license": "cc-by-nc-sa/4.0",
"bugs": {
"url": "https://github.com/martinheidegger/es6modules-nodejs/issues"
},
"homepage": "https://github.com/martinheidegger/es6modules-nodejs#readme",
"dependencies": {
"Bitters": "git+https://github.com/thoughtbot/bitters/",
"ampersand-router": "^4.0.0",
"bourbon": "^4.2.7",
"bourbon-neat": "^1.7.4",
"browserify": "^13.0.1",
"domready": "^1.0.8",
"element-scroll-to": "^1.1.0",
"eyeglass": "^2.4.2",
"jade": "^1.11.0",
"markdown-it": "^6.0.5",
"markdown-it-attrs": "^0.5.1",
"markdown-it-contents": "0.0.1",
"markdown-it-hashtag": "^0.4.0",
"markdown-it-header-sections": "^0.2.2",
"markdown-it-link-target": "^1.0.1",
"node-sass": "^4.13.1",
"standard": "^7.1.2"
}
}