forked from universal-design-tokens/udt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 887 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
{
"name": "@udt/dtcg2csv",
"version": "0.1.0",
"description": "A CLI utility for exporting tokens and groups from DTCG files to records in a CSV file.",
"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": [
"dtcg",
"cli",
"csv"
],
"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",
"dependencies": {
"@udt/dtcg-parser": "^0.1.0",
"@udt/tom": "^0.1.0",
"csv-stringify": "^6.2.3"
}
}