-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
51
52
53
54
55
56
57
58
{
"name": "@fluentui/token-pipeline",
"version": "0.22.0",
"description": "The Fluent UI design token pipeline",
"repository": {
"type": "git",
"url": "git://github.com/microsoft/fluentui-token-pipeline.git"
},
"author": "Travis Spomer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/fluentui-token-pipeline/issues"
},
"homepage": "https://microsoft.github.io/fluentui-token-pipeline",
"dependencies": {
"args": "^5.0.1",
"esm": "^3.2.25",
"jsonfile": "^6.0.1",
"lodash": "4.17.21",
"style-dictionary": "2.10.2",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/eslint-parser": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/jsonfile": "^6.0.0",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/tinycolor2": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "7.19.0",
"typescript": "^4.5.5"
},
"bin": {
"transform-tokens": "dist/cli/index.js"
},
"files": [
"*.md",
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "npm run build",
"prepublish": "npm run build",
"build": "tsc",
"inc": "tsc --incremental --tsBuildInfoFile .tsbuildinfo",
"watch": "tsc --watch",
"transform": "node dist/cli --in src/demo/fluentui.json --out build"
}
}