-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "@amendable/colors-polished",
"version": "0.5.0",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"files": [
"dist"
],
"license": "MIT",
"homepage": "https://github.com/amendable/colors-polished",
"bugs": {
"url": "https://github.com/amendable/colors-polished/issues"
},
"repository": "amendable/colors-polished",
"contributors": [
{
"name": "Domas Bitvinskas",
"email": "[email protected]",
"url": "https://domasbitvinskas.com"
},
{
"name": "Justas Palumickas",
"email": "[email protected]",
"url": "https://jpalumickas.com"
}
],
"dependencies": {
"@amendable/colors": "^0.3.0",
"polished": "^4.1.2"
},
"devDependencies": {
"@amendable/prettier-config": "^1.0.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2"
},
"scripts": {
"build": "rimraf dist && microbundle build --no-compress --name amendableColorsPolished",
"watch": "microbundle watch --no-compress",
"test": "jest"
},
"prettier": "@amendable/prettier-config"
}