-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "@sumup/design-tokens",
"version": "2.1.2",
"description": "Visual primitives such as typography, color, and spacing that are shared across platforms.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"directory": "packages/design-tokens",
"url": "git+https://github.com/sumup-oss/circuit-ui.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sumup-oss/circuit-ui/issues"
},
"homepage": "https://github.com/sumup-oss/circuit-ui/tree/main/packages/design-tokens/README.md",
"scripts": {
"start": "tsc --watch",
"build": "yarn build:es && yarn build:cjs",
"build:es": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"lint": "foundry run eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"test": "jest --watch"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/prop-types": "^15.7.3",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"ts-jest": "^26.4.4",
"typescript": "^4.2.3"
}
}