-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.81 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
67
68
69
70
71
72
73
74
{
"name": "tempera",
"description": "A CLI toolkit for aiding design tokens adoption.",
"version": "0.1.2",
"author": "Mike Mangialardi",
"bin": {
"tempera": "./bin/run"
},
"bugs": "https://github.com/michaelmang/tempera/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@tempera/css-types": "^0.1.2",
"@tempera/postcss-scorecard": "^0.1.2",
"cfonts": "^2.9.1",
"chalk": "^4.1.0",
"cli-pie": "^2.4.2",
"cli-table3": "^0.6.0",
"extract-css-core": "^2.3.1",
"json-beautify": "^1.1.1",
"lodash.groupby": "^4.6.0",
"lodash.kebabcase": "^4.1.1",
"lodash.sortby": "^4.7.0",
"lodash.startcase": "^4.4.0",
"ora": "^5.3.0",
"postcss": "^8.2.7",
"postcss-pxtorem": "^5.1.1",
"postcss-shorthand-expand": "^1.0.1",
"string-argv": "^0.3.1",
"tempera": "^0.2.0",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"eslint-plugin-prettier": "^3.3.1",
"globby": "^10",
"lerna": "^3.22.1",
"prettier": "^2.2.1"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/michaelmang/tempera",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "tempera",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "michaelmang/tempera",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest",
"test": "echo NO TESTS",
"format": "prettier --write ."
},
"gitHead": "2f0f89563ed1e0eea61065eb589802693e643dff"
}