forked from salesforce-ux/theo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.24 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
59
60
61
62
63
64
65
{
"name": "theo",
"version": "6.0.0-alpha.4",
"license": "BSD-3-Clause",
"description": "Design Tokens formatter",
"keywords": [
"css",
"design",
"properties",
"tokens",
"sass",
"scss",
"stylus",
"less",
"iOS",
"Android",
"aura"
],
"main": "lib/index.js",
"scripts": {
"test": "jest",
"lint": "standard"
},
"engines": {
"node": ">=6.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/salesforce-ux/theo.git"
},
"authors": [
"Salesforce and contributors",
"Adam Putinski",
"Sönke Rohde <[email protected]>"
],
"bugs": {
"url": "https://github.com/salesforce-ux/theo/issues"
},
"homepage": "https://github.com/salesforce-ux/theo",
"dependencies": {
"core.lambda": "^1.0.0",
"data.either": "^1.5.0",
"handlebars": "^4.0.6",
"handlebars-helpers": "^0.8.0",
"immutable": "^3.8.1",
"immutable-ext": "^1.0.8",
"js-yaml": "^3.8.1",
"json5": "^0.5.1",
"lodash": "^4.17.4",
"no-case": "^2.3.1",
"tinycolor2": "~1.4.1"
},
"devDependencies": {
"jest": "^19.0.2",
"standard": "^9.0.0"
},
"standard": {
"global": [
"describe",
"it",
"xit",
"expect"
]
}
}