-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.64 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
{
"name": "js-tachyons",
"description": "A hand-tweaked build of the popular Functional CSS library Tachyons.",
"version": "1.3.4",
"author": "Jesse Stuart <[email protected]>",
"devDependencies": {
"@semantic-release/git": "7.0.18",
"@types/lodash": "4.14.172",
"@types/node": "12.20.23",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-standard": "13.0.1",
"eslint-friendly-formatter": "4.0.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"js-yaml": "3.14.1",
"lodash": "4.17.21",
"prettier": "1.19.1",
"renovate": "19.239.11",
"semantic-release": "15.14.0",
"tachyons-generator": "0.23.0",
"ts-node": "8.10.2",
"typescript": "3.9.10"
},
"files": [
"dist/*.css"
],
"homepage": "https://js-tachyons.now.sh",
"keywords": [
"functional-css",
"tachyons",
"tachyons-css"
],
"resolutions": {
"lodash": "4.17.21"
},
"license": "MIT",
"main": "dist/tachyons.css",
"repository": "https://github.com/jessestuart/js-tachyons",
"scripts": {
"build": "ts-node src/generate.ts",
"check-types": "tsc -p tsconfig.json",
"lint": "yarn lint:js && yarn check-types",
"lint:js": "eslint --cache --quiet --ext .ts ./src/",
"deploy": "cd dist && npx now --public",
"prepublishOnly": "yarn -s && yarn build",
"release": "yarn build && yarn semantic-release",
"update": "ncu -u && yarn -s"
},
"style": "dist/tachyons.css"
}