This repository has been archived by the owner on Apr 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
{
"name": "@shopify/polaris-tokens",
"version": "4.0.0",
"description": "Design Tokens for the Polaris Design System",
"main": "dist/index.common.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "sewing-kit test",
"clean": "rimraf ./dist-modern",
"prebuild": "yarn run clean",
"build": "npm-run-all build:ts build:gulp",
"build:ts": "tsc -p tsconfig.build.json",
"build:gulp": "gulp",
"postbuild": "yarn run format",
"format": "prettier './dist-modern/**/*.{js,json,css}' --write && prettier './dist-modern/**/*.ts' --write --parser typescript",
"type-check": "sewing-kit type-check",
"lint": "sewing-kit lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/polaris-tokens.git"
},
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"keywords": [
"polaris",
"design-tokens"
],
"author": "Shopify",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shopify/polaris-tokens/issues"
},
"eslintConfig": {
"extends": [
"plugin:@shopify/typescript",
"plugin:@shopify/node",
"plugin:@shopify/jest",
"plugin:@shopify/prettier"
]
},
"stylelint": {
"extends": [
"@shopify/stylelint-plugin"
]
},
"homepage": "https://github.com/Shopify/polaris-tokens#readme",
"devDependencies": {
"@shopify/sewing-kit": "^0.143.0",
"@types/lodash": "^4.14.165",
"@types/theo": "^8.1.3",
"gulp": "^4.0.2",
"gulp-load-plugins": "^2.0.6",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-theo": "^2.0.1",
"lodash": "^4.17.20",
"ms": "^2.1.3",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"theo": "8.1.5",
"tinycolor2": "^1.4.2",
"typescript": "^4.1.3",
"xml": "^1.0.1"
},
"dependencies": {
"hsluv": "^0.1.0",
"tslib": "^1.14.1"
}
}