-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.8 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
{
"name": "@cogizmo/fluid-adapter",
"version": "0.1.0",
"description": "Key handler that dispatches a custom event based on specified key combinations.",
"main": "src/component.js",
"scripts": {
"preversion": "npm run clean && npm test",
"clean": "node_modules/.bin/rimraf \"./build/!(node_modules)\"",
"clean:all": "node_modules/.bin/rimraf ./build/*",
"build": "npm run build:copy",
"build:copy": "cpy \"**/?(*)?(.*)\" \"../build\" --cwd=src --parents && npm run build:copy2",
"build:copy2": "cpy \"+(test|example)/**/*?(.*)\" \"./build\" --parents && npm run build:docs",
"build:docs": "cpy \"!(README).md\" \"./build/doc\" && npm run build:license",
"build:license": "cpy \"+(README|LICENSE)?(.*)\" \"./build/\"",
"pretest": "npm run build && cd build && npm install --only=dev",
"test": "cd build && npm test",
"patch": "npm version patch && cd build && npm version patch",
"minor": "npm version minor && cd build && npm version minor",
"major": "npm version major && cd build && npm version major",
"git:pkg": "git add src/package.json && git commit -m \"bump version\"",
"git:push": "git push origin --all && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cogizmo/fluid-adapter.git"
},
"keywords": [
"web-components",
"custom-elements",
"javascript",
"js",
"vanilla-js"
],
"author": "Donald Lee Atkinson <fuzzicallogic@outlook.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cogizmo/fluid-adapter/issues"
},
"homepage": "https://github.com/cogizmo/fluid-adapter#README.md",
"devDependencies": {
"cpy-cli": "^2.0.0",
"rimraf": "^2.6.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cogizmo/cogizmo": "^0.6.4"
}
}