This repository has been archived by the owner on Nov 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "@increments/qiita-slide-mode",
"description": "Qiita's Slide Mode component.",
"version": "0.2.1",
"main": "dist/index.js",
"license": "MIT",
"repository": "increments/qiita-slide-mode",
"files": [
"src",
"dist",
"index.d.ts"
],
"author": "Jorge Bucaran",
"scripts": {
"test": "echo We live in an interactive world!",
"build": "npm run build:jsx && npm run build:dist",
"build:dist": "(rm -fr dist || true) && rollup -c",
"build:jsx": "babel -d ./ src/*.jsx",
"prepare": "npm run build",
"format": "npm run format:css && npm run format:js",
"format:css": "prettier --parser scss --write {src,example}/**/*.scss",
"format:js": "prettier --write {src,example,test}/**/*.js",
"release": "npm run build && npm run test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"dependencies": {
"@increments/qiita-logo": "0.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"hyperapp": "1.2.5",
"prettier": "^1.11.1",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"typescript": "2.7.1"
},
"peerDependencies": {
"hyperapp": "1.2.5"
},
"babel": {
"presets": [
"env"
],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
]
},
"prettier": {
"printWidth": 120,
"semi": false
}
}