forked from universal-design-tokens/udt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "udt-monorepo",
"version": "0.1.0",
"private": true,
"description": "Monorepo for UDT spec, reference JS lib and tools.",
"main": "index.js",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"lint": "lerna run lint",
"build": "lerna run build",
"test": "lerna run test",
"watch": "lerna run watch --parallel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/universal-design-tokens/udt.git"
},
"keywords": [
"udt",
"design-tokens",
"design-systems",
"spec",
"json-schema"
],
"author": "James Nash (https://cirrus.twiddles.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/universal-design-tokens/udt/issues"
},
"homepage": "https://github.com/universal-design-tokens/udt#readme",
"workspaces": [
"./packages/*"
],
"engines": {
"node": ">= 16",
"npm": ">= 8"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^16.18.11",
"del-cli": "^5.0.0",
"jest": "^29.3.1",
"lerna": "^6.3.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}