This repository was archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.6 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
{
"name": "move-into-view",
"version": "0.1.0",
"description": "move-into-view is such as scroll-into-view but better.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run karma && codecov",
"karma": "karma start karma.conf.js",
"lint": "eslint .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"prepublish": "browserify --ignore-missing shim.js > miw.js && browserify --ignore-missing shim.js | uglifyjs -c > miw.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/linuxenko/move-into-view.git"
},
"keywords": [
"scroll"
],
"author": "Svetlana Linuxenko <linuxenko@yahoo.com> (http://www.linuxenko.pro)",
"license": "MIT",
"bugs": {
"url": "https://github.com/linuxenko/move-into-view/issues"
},
"homepage": "https://github.com/linuxenko/move-into-view#readme",
"devDependencies": {
"browserify": "^13.3.0",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"coveralls": "^3.0.6",
"csstate": "^1.1.0",
"eslint": "^6.5.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"karma": "^4.3.0",
"karma-browserify": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^2.1.0",
"karma-mocha": "^1.3.0",
"karma-nyan-reporter": "^0.2.5",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^6.2.1",
"semantic-release": "^15.13.25",
"uglify-js": "^2.8.16",
"watchify": "^3.8.0"
}
}