-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "@informatix8/source-attribution",
"version": "1.1.0",
"title": "Source Attribution",
"description": "Append content to copied clipboard text.",
"license": "ISC",
"main": "dist/source-attribution.cjs.js",
"module": "dist/source-attribution.esm.js",
"browser": "dist/source-attribution.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/source-attribution.git"
},
"dependencies": {
"lodash.merge": "^4.6.1"
},
"devDependencies": {
"jscs": "^3.0.7",
"jsdoc": "^3.5.5",
"jshint": "^2.10.2",
"npm-run-all": "^4.1.5",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-filesize": "^6.1.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.4",
"serve": "^11.0.1",
"ub-jsdoc": "^1.7.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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",
"_jsdoc": "node ./node_modules/jsdoc/jsdoc.js -c jsdoc.conf.json"
},
"files": [
"dist",
"src"
]
}