-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "@informatix8/glue-stick",
"version": "2.1.1",
"title": "Glue Stick",
"description": "Sticky elements",
"license": "ISC",
"main": "dist/glue-stick.cjs.js",
"module": "dist/glue-stick.esm.js",
"browser": "dist/glue-stick.all.umd.js",
"author": "Mjr",
"contributors": [
"Mjr <mjr@informatix.io>"
],
"engines": {
"npm": "^3.0.0",
"node": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:informatix8/glue-stick.git"
},
"dependencies": {
"hc-sticky": "https://github.com/informatix8/hc-sticky.git",
"intersection-observer": "^0.7.0",
"lodash.merge": "^4.6.2",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"cypress": "^3.4.1",
"jscs": "^3.0.7",
"jsdoc": "^3.6.3",
"jshint": "^2.10.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"rollup": "^1.21.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"serve": "^11.1.0",
"ub-jsdoc": "^1.7.3"
},
"scripts": {
"test": "cypress open",
"dev": "npm-run-all --parallel _start _watch",
"build": "rollup -c && npm run _lint && npm run _jsdoc",
"_start": "serve public",
"_watch": "rollup -c -w",
"_lint_global": "jshint ./src",
"_lint": "node ./node_modules/jshint/dist/jshint.js ./src && jscs ./src",
"_jsdoc": "node ./node_modules/jsdoc/jsdoc.js -c jsdoc.conf.json",
"clean": "rimraf ./dist ./public/glue-stick.* ./cypress",
"deepclean": "npm run clean && rimraf ./node_modules"
},
"files": [
"dist",
"src"
]
}