forked from cogizmo/cogizmo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.78 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.78 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
47
48
49
50
51
52
53
{
"name": "@cogizmo/cogizmo",
"version": "0.6.4",
"description": "Convenience SuperClass for Custom Elements",
"main": "src/cogizmo.mjs",
"scripts": {
"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",
"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",
"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/cogizmo.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/cogizmo/issues"
},
"homepage": "https://github.com/cogizmo/cogizmo#README.md",
"files": [
"/LICENSE",
"/README.md",
"/src/Cogizmo.js",
"/src/Cogizmo.js"
],
"devDependencies": {
"cpy-cli": "^2.0.0",
"rimraf": "^2.6.3"
},
"publishConfig": {
"access": "public"
}
}