-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "wayside",
"version": "0.0.5",
"description": "Activates a nav menu with internally facing links that, when clicked, scroll down to an anchored element.",
"author": "maxrolon",
"main": "./src/index.js",
"scripts": {
"browser": "mkdir -p browser && browserify src/index.js --standalone src/index.js > browser/index.js",
"watch": "watchify test/dev.js -v -d -o test/index.js",
"test": "ava test/test.js -v",
"size": "bundle-size ./browser/index.js"
},
"babel": {
"presets": [
"es2015"
]
},
"browserify": {
"transform": [
"babelify"
]
},
"ava": {
"require": [
"./test/test-helpers.js"
]
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-register": "^6.14.0",
"browserify": "^12.0.1",
"bundle-size": "^0.7.0",
"jsdom": "^9.5.0",
"minifyify": "^7.3.3",
"watchify": "^3.7.0"
},
"dependencies": {
"tweezer.js": "^1.3.2",
"raf-scroll.js": "^0.0.10",
"babelify": "^7.3.0",
"babel-preset-es2015": "6.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/maxrolon/wayside.git"
},
"license": "MIT"
}