-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "@vonage/vvd-design-tokens-properties",
"version": "0.9.0",
"description": "Vivid Design System - Design Tokens",
"homepage": "https://github.com/Vonage/vivid-design-tokens-properties",
"license": "ISC",
"files": [
"globals",
"typography",
"dist"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Vonage/vivid-design-tokens-properties.git"
},
"bugs": {
"url": "https://github.com/Vonage/vivid-design-tokens-properties/issues"
},
"scripts": {
"lint": "eslint -c .eslintrc.json ./scripts/**/*.js ./test/**/*.js",
"test": "jest && yarn e2e && node ./test/test-dictionary-coherent.js",
"test:dev": "jest --watch",
"e2e": "node ./test/e2e/style-dictionary-integration.spec.e2e.js",
"bump": "node ./scripts/bump-version.js",
"fetch": "node ./scripts/figma-parsers/fetch-figma-data.js",
"parse": "node ./scripts/figma-parsers/parse-figma-data.js",
"build:globals": "node ./scripts/build-globals.js"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.8",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.5.2",
"jest": "^27.2.4",
"style-dictionary": "^3.0.2"
},
"babel": {
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}
}