-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2 KB
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
{
"name": "@atomic-framework/design-system",
"version": "1.5.9",
"description": "From Designer params to read-to-use Frontend material",
"main": "lib/design-system.js",
"types": "lib/design-system.d.ts",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12"
},
"keywords": [
"Frontend",
"Atomic",
"Design",
"Styleguide",
"Sass",
"Framework",
"Design System",
"Typescale"
],
"files": [
"defaults/**/*",
"lib/**/*",
"!lib/index.js",
"!lib/index.js.map",
"!lib/index.d.ts"
],
"scripts": {
"test": "jest --passWithNoTests --config jestconfig.json",
"dev": "npx tsc -w",
"build": "npx tsc",
"format": "npx prettier --write \"src/**/*.ts\"",
"lint": "npx tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src && git add -A defaults",
"postversion": "git push && git push --tags",
"proceed": "node ./lib/index.js -entry ./defaults -output ./dist -format .vue"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomic-framework-project/design-system.git"
},
"author": "shepaop",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomic-framework-project/design-system/issues"
},
"homepage": "https://github.com/atomic-framework-project/design-system#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/globule": "^1.1.4",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.177",
"@types/svgo": "^2.6.0",
"@types/urlencode": "^1.1.2",
"jest": "^27.3.1",
"svgo": "^2.8.0",
"ts-jest": "^27.0.7",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@vusion/webfonts-generator": "^0.8.0",
"fs-extra": "^10.0.0",
"globule": "^1.3.3",
"lodash": "^4.17.21",
"prettier": "^2.4.1",
"urlencode": "^1.1.0"
}
}