-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "@informatix8/glue-stack",
"version": "1.1.0",
"title": "Glue Stack",
"description": "Stack of sticky elements",
"license": "ISC",
"main": "dist/glue-stack.cjs.js",
"module": "dist/glue-stack.esm.js",
"browser": "dist/glue-stack.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-stack.git"
},
"dependencies": {
"@informatix8/glue-stick": "^2.1.0",
"lodash.merge": "^4.6.2"
},
"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 _glue_stick_copy _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",
"_glue_stick_copy": "cp ./node_modules/@informatix8/glue-stick/dist/glue-stick.all.umd.js ./public",
"clean": "rimraf ./dist ./public/glue-stack.* ./public/glue-stick.* ./cypress",
"deepclean": "npm run clean && rimraf ./node_modules"
},
"files": [
"dist",
"src"
]
}