-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.49 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
{
"name": "stickyStack",
"version": "1.0.1",
"description": "Make you reading context, titles, and subtitles stick while user scroll the page",
"main": "dist/stickyStack.js",
"repository": {
"type": "git",
"url": "https://github.com/alexpusch/StickyStack.git"
},
"homepage": "http://alexpusch.github.io/StickyStack/",
"keywords": [
"scroll",
"ux"
],
"author": "Alex Puschinsky",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-polyfill": "*",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.0",
"chai": "^3.5.0",
"core-js": "^2.0.3",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"imports-loader": "^0.6.5",
"jquery": "^2.2.3",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"waypoints": "^4.0.0",
"webpack": "^1.12.10",
"webpack-dev-server": "^1.14.1",
"webpack-notifier": "^1.2.1"
},
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --inline --hot --debug --devtool source-map --port=9090",
"build": "node_modules/.bin/webpack",
"build-production": "npm run build -- -p --output-file=stickyStack.min.js",
"prepublish": "npm run build && npm run build-production",
"test": "webpack-dev-server 'mocha!./specs/specs.js' --port 9091 --hot --inline --output-filename test.js",
"test-raw": "mocha --compilers js:babel-core/register --colors -w ./specs/*_specs.js"
}
}