-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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": "horologist-js",
"version": "0.0.0",
"private": true,
"description": "Horologist is a JavaScript library for animating DOM elements to represent time in the same ways as many of the world's greatest haute horologist watchmakers",
"main": "index.js",
"packageManager": "yarn@3.1.1",
"workspaces": [
"packages/*"
],
"scripts": {
"demo": "yarn workspace demo",
"docs": "yarn workspace horologist-docs",
"horologist": "yarn workspace horologist",
"lint": "eslint",
"lint:fix": "yarn lint -- --fix",
"prettier": "prettier ./ --check",
"prettier:fix": "yarn prettier -- --write",
"format": "yarn prettier:fix && yarn lint:fix",
"reset": "rm -rf node_modules */**/node_modules yarn.lock && yarn"
},
"author": "Daniel Yuschick <daniel.yuschick@gmail.com>",
"license": "UNLICENSED",
"keywords": [
"ticktock",
"ticktock-js",
"svg",
"animation",
"watchmaking",
"horologist",
"horology",
"haute",
"typescript",
"javascript"
],
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint": "^8.19.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier-eslint-cli": "^6.0.1",
"prettier-eslint": "^15.0.1",
"prettier": "^2.7.1"
},
"dependencies": {
"horologist": "^1.1.1"
}
}