forked from oblador/angular-scroll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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": "angular-scroll",
"version": "1.0.0",
"description": "Scrollspy, animated scrollTo and scroll events",
"keywords": [
"angular",
"smooth-scroll",
"scrollspy",
"scrollTo",
"scrolling"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://git@github.com:oblador/angular-scroll.git"
},
"bugs": {
"url": "https://github.com/oblador/angular-scroll/issues"
},
"scripts": {
"start": "http-server -p 8888",
"test": "./node_modules/karma/bin/karma start test/karma.conf.js",
"build": "./node_modules/.bin/gulp build",
"test-ci": "./node_modules/.bin/gulp test",
"test-single-run": "./node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"update-webdriver": "node_modules/protractor/bin/webdriver-manager update",
"protractor": "node_modules/protractor/bin/protractor test/protractor.conf.js"
},
"author": "Joel Arvidsson",
"license": "MIT",
"devDependencies": {
"gulp": "^3.8.11",
"gulp-concat": "^2.5.1",
"gulp-jshint": "^1.9.2",
"gulp-ng-annotate": "^0.5.2",
"gulp-rimraf": "^0.1.1",
"gulp-sourcemaps": "^1.3.0",
"gulp-uglify": "^1.1.0",
"http-server": "^0.7.4",
"jasmine-given": "^2.6.2",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.5",
"protractor": "^1.7.0"
}
}