-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1 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
{
"name": "@dromney/gear-gen",
"version": "0.2.11",
"description": "A set of types and pattern generators for working with front-end gears",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && tsc && npm run copy-files",
"clean": "rm -rf ./dist",
"copy-files": "mkdir ./dist/styles && cp ./src/styles/** ./dist/styles && cp ./src/styles/.css.template ./dist/styles && mkdir ./dist/examples && cp ./src/examples/** ./dist/examples"
},
"prepublish": "npm run build",
"keywords": [
"gear",
"gearpattern",
"pattern",
"gears"
],
"author": "Dallin Romney",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RomneyDa/gear-pattern-generator.git"
},
"bugs": {
"url": "https://github.com/RomneyDa/gear-pattern-generator/issues"
},
"homepage": "https://github.com/RomneyDa/gear-pattern-generator#readme"
}