-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
80 lines (80 loc) · 2.81 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
{
"name": "@sage/design-tokens",
"version": "0.2.0",
"author": "The Sage Group plc",
"description": "Design tokens for the Sage Design System.",
"private": false,
"license": "SEE LICENSE IN https://github.com/Sage/design-tokens/blob/master/license",
"repository": {
"type": "git",
"url": "git+https://github.com/Sage/design-tokens.git"
},
"engines": {
"node": ">=20"
},
"engineStrict": true,
"tags": [
"design tokens",
"sage",
"design system"
],
"type": "module",
"scripts": {
"test": "mocha",
"test:watch": "npm test -- --watch",
"build": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/build.ts && npm run post-process-css",
"prebuild": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/prebuild.ts",
"postbuild": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/postbuild.ts",
"post-process-css": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/post-process-css",
"prepublishOnly": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./scripts/bump-main-package-version.ts",
"stylelint:dist": "npx stylelint 'dist/**/*.{css,scss}' --report-needless-disables --report-descriptionless-disables --report-invalid-scope-disables"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.11.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@tokens-studio/sd-transforms": "^1.2.8",
"@tsconfig/strictest": "^2.0.5",
"@types/chai": "^5.0.1",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.17.13",
"@types/mocha": "^10.0.10",
"@types/node-fetch": "^2.6.12",
"chai": "^5.1.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^7.2.1",
"fantasticon": "^3.0.0",
"figma-js": "^1.16.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"less": "^4.2.1",
"lodash": "^4.17.21",
"mocha": "^10.8.2",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"scss": "^0.2.4",
"style-dictionary": "^4.2.0",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"tinycolor2": "^1.6.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}