-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.94 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"author": {
"name": "Aryeh Raber",
"email": "aryeh.raber@gmail.com",
"url": "https://serieseight.com"
},
"browserslist": "last 2 versions",
"bugs": {
"url": "https://github.com/serieseight/scrollinview/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"description": "Easily trigger classes as elements enter the viewport",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.39",
"@babel/core": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.2.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"jest": "^21.3.0-beta.15",
"rollup": "^0.55.3",
"rollup-plugin-babel": "4.0.0-beta.1",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^3.0.0",
"semantic-release": "^12.4.1",
"semantic-release-cli": "^3.6.2",
"travis-deploy-once": "^4.3.4"
},
"homepage": "https://github.com/serieseight/scrollinview#readme",
"jest": {
"testRegex": "/tests/.*$"
},
"license": "MIT",
"main": "cjs/index.js",
"module": "modules/index.js",
"name": "scrollinview",
"repository": {
"type": "git",
"url": "https://github.com/serieseight/scrollinview"
},
"scripts": {
"build": "yarn build:cjs && yarn build:modules && yarn build:umd",
"build:cjs": "NODE_ENV=production BABEL_ENV=cjs babel src --out-dir cjs",
"build:modules": "NODE_ENV=production BABEL_ENV=modules babel src --out-dir modules",
"build:umd": "NODE_ENV=production BABEL_ENV=umd rollup -c",
"commit": "git-cz",
"prepare": "yarn tidy && yarn build",
"semantic-release": "semantic-release",
"setup:semantic-release": "semantic-release-cli setup",
"test": "exit 0",
"tidy": "rm -rf modules cjs dist yarn-error.log",
"travis-deploy-once": "travis-deploy-once"
},
"version": "0.0.0-development"
}