forked from universal-design-tokens/udt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 910 Bytes
/
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": "@udt/dtcg-serializer",
"version": "0.1.0",
"description": "A library for serializing Token Object Models (TOM) to DTCG design token files",
"main": "dist/index.js",
"scripts": {
"clean": "del dist/*",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"test": "jest --coverage --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/universal-design-tokens/udt.git"
},
"keywords": [
"design tokens",
"serializer",
"write",
"save",
"tom",
"dtcg"
],
"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/tree/master/packages/dtcg-serializer#readme",
"dependencies": {
"@udt/tom": "^0.1.0"
}
}