-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "scrollx",
"version": "2.2.2",
"description": "scroll animation engine",
"main": "dist/scrollx.js",
"scripts": {
"start": "npm run build",
"watch": "npm run prebuild; nodemon --watch ./lib --exec \"npm run dev\"",
"build": "WEBPACK_ENV=build webpack",
"dev": "WEBPACK_ENV=dev webpack",
"prebuild": "mkdir -p ./dist",
"prepublish": "npm run prebuild; npm run build;",
"lint": "eslint lib/**/*.js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnaudlewis/scrollx.git"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.10.4",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.6",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"eslint": "^3.8.1",
"watchify": "^3.7.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"keywords": [
"scroll",
"animation"
],
"author": "Arnaud Lewis",
"license": "ISC",
"bugs": {
"url": "https://github.com/arnaudlewis/scrollx/issues"
},
"homepage": "https://github.com/arnaudlewis/scrollx#readme"
}