-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·91 lines (91 loc) · 2.21 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "preact-glam",
"amdName": "preactGlam",
"version": "1.0.0",
"description": "A tiny glamorous implementation for preact",
"jsnext:main": "dist/preact-glam.es.js",
"module": "dist/preact-glam.es.js",
"main": "dist/preact-glam.cjs.js",
"umd:main": "dist/preact-glam.umd.js",
"scripts": {
"precommit": "lint-staged",
"bump": "standard-version",
"testonly": "jest --coverage",
"lint": "standard",
"test": "npm run lint && npm run testonly",
"build": "npm-run-all test clean rollup rollup:min size",
"clean": "rimraf dist",
"rollup": "rollup -c",
"rollup:min": "cross-env MINIFY=minify rollup -c",
"size": "echo \"Gzipped Size: $(cat dist/preact-glam.umd.min.js | gzip-size)\"",
"release": "npm run build && npm run bump && git push --follow-tags origin master && npm publish"
},
"repository": "vesparny/preact-glam",
"keywords": [
"preact",
"glamor",
"glamorous",
"glam",
"css",
"style"
],
"homepage": "https://github.com/vesparny/preact-glam",
"authors": [
"Alessandro Arnodo <alessandro@arnodo.net>"
],
"license": "MIT",
"files": [
"dist",
"src",
"test"
],
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.4.0",
"cross-env": "^4.0.0",
"glamor": "^2.20.24",
"gzip-size-cli": "^2.0.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"lint-staged": "^3.4.0",
"npm-run-all": "^4.0.2",
"preact": "^8.1.0",
"prettier": "^1.2.2",
"rimraf": "^2.5.2",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-uglify": "^1.0.2",
"standard": "^10.0.2",
"standard-version": "^4.0.0"
},
"dependencies": {},
"peerDependencies": {
"glamor": "^2.20.24",
"preact": "^8.1.0"
},
"jest": {
"roots": [
"src"
]
},
"standard": {
"parser": "babel-eslint",
"globals": [
"jest",
"expect",
"it",
"test",
"describe"
]
},
"lint-staged": {
"*.js": [
"prettier --write --semi false",
"standard --fix",
"git add"
]
}
}