-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "stucky",
"version": "1.0.4",
"description": "A sticky table header utility that just works",
"main": "dist/stucky.js",
"dependencies": {
"object-assign": "^4.0.1",
"raf": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"classlist.js": "^1.1.20150312",
"js-dev-server": "^0.1.1",
"uglify-js": "^2.6.2",
"whatwg-fetch": "^0.11.0"
},
"scripts": {
"build:js": "babel src/stucky.js -o dist/stucky.js",
"postbuild:js": "browserify dist/stucky.js | uglifyjs > dist/stucky.min.js && browserify src/docs.js -t babelify -o dist/docs.js",
"build:css": "cp src/*.css dist/",
"prebuild": "rm -rf dist && mkdir dist",
"build": "npm run build:js && npm run build:css",
"prestart": "npm run build",
"start": "js-dev-server",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/selbekk/stucky"
},
"keywords": [
"sticky",
"table",
"header",
"vanilla",
"browser",
"pyah"
],
"author": "Kristofer Selbekk <kristofer@selbekk.io>",
"license": "MIT"
}