-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "scroll-change",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"test:watch": "npm t -- -w",
"test": "mocha src/*.test.js --require babel-register",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:* && cp dist/scroll-change.min.js docs/scroll-change.min.js",
"build:main": "webpack --output-filename scroll-change.js",
"build:min": "webpack --output-filename scroll-change.min.js -p",
"watch": "webpack --output-filename scroll-change.js --progress --colors --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pixeden/scroll-change.git"
},
"keywords": [
"scroll",
"change"
],
"files": [
"dist",
"README.md"
],
"author": "Lionel T <elrumordelaluz@hotmail.com> (https://elrumordelaluz.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pixeden/scroll-change/issues"
},
"homepage": "https://github.com/Pixeden/scroll-change#readme",
"devDependencies": {
"babel-cli": "6.24.0",
"babel-loader": "6.4.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.0",
"babel-preset-stage-2": "6.22.0",
"babel-register": "6.24.0",
"chai": "3.5.0",
"mocha": "3.2.0",
"npm-run-all": "4.0.2",
"rimraf": "2.6.1",
"webpack": "2.2.1"
}
}