forked from salesforce-ux/theo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.73 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "theo",
"version": "7.0.1",
"license": "BSD-3-Clause",
"description": "Design Tokens formatter",
"keywords": [
"css",
"design",
"properties",
"tokens",
"sass",
"scss",
"stylus",
"less",
"iOS",
"Android",
"aura"
],
"main": "lib/index.js",
"bin": {
"theo": "bin/theo.js"
},
"scripts": {
"test": "jest",
"lint": "eslint . --format codeframe --ext .js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"npm run lint",
"git add"
]
},
"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.1",
"fs-extra": "5.0.0",
"glob": "7.1.2",
"handlebars": "4.0.11",
"handlebars-helpers": "0.10.0",
"immutable": "3.8.2",
"immutable-ext": "1.1.2",
"js-yaml": "3.10.0",
"json5": "0.5.1",
"lodash": "4.17.4",
"no-case": "2.3.2",
"resolve-from": "4.0.0",
"tinycolor2": "1.4.1",
"xml": "1.0.1"
},
"devDependencies": {
"eslint": "4.16.0",
"eslint-config-prettier": "2.9.0",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"husky": "0.14.3",
"jest": "22.1.4",
"lint-staged": "6.1.0",
"prettier": "1.10.2"
}
}