-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
47 lines (47 loc) · 1.58 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "scroll-hint",
"version": "1.2.8",
"author": "steelydylan",
"description": "JavaScript library to suggest that elements are scrollable",
"license": "MIT",
"scripts": {
"test": "npm run lint",
"lint": "eslint ./src/index.js --fix",
"bundle": "browserify ./src/index.js -t babelify -p licensify --standalone ScrollHint --outfile ./js/scroll-hint.js",
"minifyjs": "uglifyjs ./js/scroll-hint.js --comments 'license' -o ./js/scroll-hint.min.js",
"build": "npm run bundle && npm run minifyjs",
"build:lib": "babel src --out-dir lib",
"sync": "browser-sync start --server './' --files './js/*.js' './css/*.css' --startPath '/examples/index.html'",
"watch": "watch 'npm run build && npm run build:lib' ./src/",
"start": "npm-run-all -p watch sync",
"deploy": "np --no-cleanup"
},
"main": "./lib/index.js",
"types": "./index.d.ts",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browser-sync": "^2.18.6",
"browserify": "^13.1.1",
"co": "^4.6.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"fs-extra": "^2.1.2",
"licensify": "^3.1.2",
"node-cmd": "^2.0.0",
"np": "^2.16.0",
"npm-run-all": "^4.0.2",
"uglify-js": "^3.19.3",
"watch": "^1.0.1",
"watchify": "^3.7.0"
},
"dependencies": {
"array.prototype.find": "^2.0.4",
"delegate": "^3.1.2",
"es6-object-assign": "^1.1.0"
}
}