-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.58 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "design-tokenizer",
"version": "0.4.5",
"description": "A tool for working with W3C Design Token JSON files.",
"keywords": [
"design",
"design system",
"design tokens",
"css",
"sass",
"scss",
"html"
],
"main": "dist/index.js",
"bin": {
"design-tokenizer": "dist/index.js"
},
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"start": "node --no-warnings dist/index.js",
"test": "mocha",
"build": "tsc --build lib",
"lint": "ts-standard --project lib/tsconfig.json",
"lint:fix": "ts-standard --fix",
"check": "npm-run-all lint test",
"prepack": "npm-run-all lint test build"
},
"pre-commit": [
"check"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jefgodesky/w3c-design-tokenizer.git"
},
"author": {
"name": "Jason Godesky",
"email": "jason@godesky.net",
"url": "https://jason.godesky.net"
},
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/jefgodesky/w3c-design-tokenizer/issues"
},
"homepage": "https://github.com/jefgodesky/w3c-design-tokenizer#readme",
"dependencies": {
"colord": "^2.9.3",
"commander": "^12.1.0",
"rfdc": "^1.3.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.1",
"chai": "^5.1.1",
"esmock": "^2.6.5",
"memfs": "^4.9.2",
"mocha": "^10.4.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"ts-standard": "^12.0.2",
"tsx": "^4.11.2",
"typescript": "^5.4.5"
}
}