-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "demo-rellax",
"version": "1.0.1",
"description": "A demo of Vanilla Javascript Parallax Library : Rellax JS",
"keywords": [
"vanilla",
"javascript",
"rellax",
"parallax"
],
"main": "src/js/main.js",
"scripts": {
"start": "webpack-dev-server --progress --open --color --d",
"build": "npm run lint && webpack -p --env build",
"lint": "eslint . --ext .js",
"test": "karma start --browsers Firefox --single-run",
"test:local": "karma start karma.conf.js --single-run",
"watch:test": "karma start karma.conf.js --log-level debug"
},
"engines": {
"node": ">=0.12.0"
},
"devDependencies": {
"babel": "6.23.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.1",
"babel-loader": "7.1.2",
"babel-plugin-istanbul": "4.1.5",
"babel-plugin-resolver": "1.1.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.2",
"clean-webpack-plugin": "0.1.17",
"css-loader": "0.28.9",
"eslint": "4.15.0",
"eslint-loader": "1.9.0",
"extract-text-webpack-plugin": "3.0.2",
"handlebars-loader": "1.6.0",
"html-webpack-plugin": "2.30.1",
"istanbul-instrumenter-loader": "3.0.0",
"json-loader": "0.5.7",
"karma": "2.0.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "1.3.3",
"karma-firefox-launcher": "1.1.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-phantomjs-launcher": "1.0.4",
"karma-safari-launcher": "1.0.0",
"karma-webpack": "2.0.9",
"mocha": "5.0.0",
"node-sass": "4.7.2",
"required-loader": "1.3.16",
"sass-loader": "6.0.6",
"style-loader": "0.19.1",
"webpack": "3.10.0",
"webpack-dev-server": "2.11.0",
"webpack-merge": "4.1.1"
},
"dependencies": {
"handlebars": "4.0.11",
"lodash": "4.17.4",
"rellax": "1.4.0"
}
}