-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.77 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
{
"name": "@fishtank/type",
"version": "3.1.2",
"description": "Typography tokens for the Fishtank Design System",
"main": "dist/index.json",
"scripts": {
"clean": "rm -rf dist/*",
"build": "npm run build:common-tokens && npm run build:tokens && npm run build:manifest && npm run build:stylesheet",
"build:common-tokens": "theo index.yml --setup scripts/transformFontFamily.js --transform web --format common.js --dest dist/",
"build:tokens": "theo index.yml --format custom-properties.css,scss,json,raw.json,less --dest dist/",
"build:manifest": "node scripts/get_token_names.js > token_names.json",
"build:stylesheet": "node scripts/generate-text-stylesheet.js > dist/css-variable-stylesheet.css",
"prepare": "npm run clean && npm run build",
"watch": "nodemon -e yml --ignore build --exec npm run build",
"test": "ava",
"test:ci": "ava --tap > test.tap",
"precommit": "npm run test",
"commitmsg": "nothing-major -v -b 'npm -s install' -t 'npm test' test.js token_names.json",
"release-props:ci": "scripts/release-props.sh > release.props",
"release": "standard-version"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"url": "https://github.com/bloombergbna/fishtank-type",
"type": "git"
},
"author": "Fish Tank <agile_fishtank@bna.com>",
"keywords": [
"fishtank",
"design-system",
"tokens",
"typography",
"type"
],
"files": [
"dist/",
"type/",
"index.yml"
],
"license": "Apache-2.0",
"devDependencies": {
"ava": "0.25.0",
"cz-conventional-changelog": "2.1.0",
"husky": "0.14.3",
"lodash": "^4.17.11",
"nodemon": "^1.12.2",
"nothing-major": "^1.1.1",
"standard-version": "^8.0.1",
"theo": "^6.0.0-beta.7"
}
}