-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "@geist-ui/icons",
"description": "The icon components for Geist UI.",
"version": "1.0.2",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"author": "Geist Org",
"license": "MIT",
"prettier": "@geist-ui/prettier-config",
"scripts": {
"start": "yarn build",
"update-icons": "ts-node scripts/update.ts",
"prettier": "prettier --write .",
"build": "ts-node src/generate.ts && node scripts/pre-release.js",
"test": "ava",
"release": "yarn build && cd dist && yarn publish --access public",
"prepublishOnly": "node scripts/check-release.js"
},
"peerDependencies": {
"@geist-ui/core": ">=1.0.0",
"react": ">=16.13.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.9.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.9.4",
"@geist-ui/prettier-config": "^1.0.0",
"@types/babel__core": "^7.1.7",
"@types/fs-extra": "^8.1.0",
"@types/jsdom": "^16.2.1",
"@types/node": "^13.13.2",
"@types/node-fetch": "^2.5.7",
"ava": "^3.7.1",
"browser-env": "^3.3.0",
"fs-extra": "^9.0.0",
"jsdom": "^16.2.2",
"node-fetch": "^2.6.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"svgo": "^1.3.2",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"ava": {
"babel": {
"testOptions": {
"presets": [
"@babel/preset-react",
"@ava/babel/stage-4"
]
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/geist-org/icons.git"
},
"bugs": {
"url": "https://github.com/geist-org/icons/issues"
},
"homepage": "https://icons.geist-ui.dev",
"dependencies": {}
}