-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.83 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@phun-ky/design-token-flow",
"version": "0.1.0",
"publishConfig": {
"access": "public"
},
"description": "Design token relations",
"main": "./dist/dtf.cjs.js",
"module": "./dist/dtf.esm.js",
"browser": "./dist/dtf.umd.js",
"scripts": {
"version": "npm run build",
"build": "rm -rf dist/ && rollup -c && gulp",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"stylus": "rm -rf ./dist/*.css ./dist/*.css.map && stylus ./src/style/styles.styl -o ./dist/styles.css",
"postcss": "rm -rf ./dist/styles.min.css && postcss ./dist/styles.css.css -o styles.min.css",
"commit": "npx git-cz",
"release": "npx standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phun-ky/design-token-flow.git"
},
"author": "Alexander Vassbotn Røyne-Helgesen <alexander@phun-ky.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/phun-ky/design-token-flow/issues"
},
"standard-version": {
"scripts": {
"prerelease": "npm run build && git add .",
"posttag": "git push --follow-tags origin master && npm publish"
},
"types": [
{
"type": "chore",
"section": "Tasks",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "feat",
"section": "Feature"
},
{
"type": "fix",
"section": "Bug"
},
{
"type": "perf",
"section": "Performance change"
},
{
"type": "refactor",
"section": "Refactoring"
},
{
"type": "release",
"section": "Create a release commit",
"hidden": true
},
{
"type": "style",
"section": "Markup, white-space, formatting, missing semi-colons...",
"hidden": true
},
{
"type": "test",
"section": "Adding missing tests",
"hidden": true
}
]
},
"homepage": "https://github.com/phun-ky/design-token-flow#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"network-information-types": "^0.1.1",
"panzoom": "^9.4.1"
}
}