UNPKG

3.99 kBJSONView Raw
1{
2 "name": "patternplate-transform-react",
3 "version": "1.1.4",
4 "description": "patternplate transform creating reusable React classes from jsx templates",
5 "main": "distribution/index.js",
6 "files": [
7 "distribution"
8 ],
9 "scripts": {
10 "build": "babel source --out-dir distribution",
11 "changelog": "conventional-changelog --preset angular --infile changelog.md --same-file --output-unreleased",
12 "clean": "rm -rf distribution",
13 "commit": "git-cz",
14 "commitmsg": "conventional-changelog-lint -e",
15 "deps": "dependency-check . --missing && dependency-check . --extra --no-dev",
16 "postversion": "git tag -d v$npm_package_version && git commit --amend -m \"chore(release): $npm_package_version\n$(conventional-changelog -p angular)\" && git tag -a v$npm_package_version -m \"$(conventional-changelog -p angular)\"",
17 "prepare": "mkdir -p distribution",
18 "preversion": "npm run build && npm test",
19 "push": "git push && git push --tags && hub release create \"v$npm_package_version\" --message=\"v$npm_package_version\n$(conventional-changelog -p angular)\" && npm publish",
20 "release": "npm version $(conventional-recommended-bump -p angular)",
21 "start": "npm run watch",
22 "test": "npm run build && xo source && npm run deps && ava",
23 "version": "npm run changelog && git add . && echo \"$(conventional-changelog -p angular)\"",
24 "watch": "npm run test -- --watch"
25 },
26 "babel": {
27 "presets": [
28 "es2015-node4",
29 "es2016-node4",
30 "stage-0",
31 "react"
32 ],
33 "plugins": [
34 "add-module-exports"
35 ]
36 },
37 "ava": {
38 "files": [
39 "test/**/*.js"
40 ],
41 "source": [
42 "source/**/*.js"
43 ],
44 "require": [
45 "babel-polyfill",
46 "babel-register"
47 ],
48 "babel": "inherit"
49 },
50 "xo": {
51 "esnext": true,
52 "plugins": [
53 "react"
54 ]
55 },
56 "repository": {
57 "type": "git",
58 "url": "git+https://github.com/sinnerschrader/patternplate-transform-react.git"
59 },
60 "bugs": {
61 "url": "https://github.com/sinnerschrader/patternplate/issues"
62 },
63 "homepage": "https://github.com/sinnerschrader/patternplate-transform-react#readme",
64 "keywords": [
65 "react",
66 "patternplate",
67 "transform",
68 "pattern"
69 ],
70 "author": {
71 "name": "SinnerSchrader Deutschland GmbH",
72 "email": "jobs@sinnerschrader.com"
73 },
74 "contributors": [
75 {
76 "name": "Mario Nebl",
77 "email": "mario.nebl@sinnerschrader.com"
78 },
79 {
80 "name": "Markus Wolf",
81 "email": "markus.wolf@sinnerschrader.com"
82 }
83 ],
84 "license": "MIT",
85 "devDependencies": {
86 "ava": "0.17.0",
87 "babel-cli": "6.18.0",
88 "babel-core": "6.20.0",
89 "babel-plugin-add-module-exports": "0.2.1",
90 "babel-polyfill": "6.20.0",
91 "babel-preset-es2015-node4": "2.1.0",
92 "babel-preset-es2016-node4": "6.0.1",
93 "babel-preset-react": "6.16.0",
94 "babel-preset-stage-0": "6.16.0",
95 "babel-register": "6.18.0",
96 "conventional-changelog-cli": "1.2.0",
97 "conventional-changelog-lint": "1.1.0",
98 "conventional-recommended-bump": "0.3.0",
99 "cz-conventional-changelog-lint": "0.1.3",
100 "dependency-check": "2.6.0",
101 "eslint-plugin-react": "6.8.0",
102 "husky": "0.11.9",
103 "jsdom": "9.8.3",
104 "parallelshell": "2.0.0",
105 "react": "15.4.1",
106 "react-addons-test-utils": "15.4.1",
107 "react-dom": "15.4.1",
108 "require-from-string": "1.2.1",
109 "unexpected": "10.20.0",
110 "unexpected-react": "3.3.2",
111 "unindent": "2.0.0",
112 "xo": "0.17.1"
113 },
114 "peerDependencies": {
115 "react": ">= 0.14",
116 "react-dom": ">= 0.14"
117 },
118 "dependencies": {
119 "babel-code-frame": "6.20.0",
120 "babel-generator": "6.20.0",
121 "babel-template": "6.16.0",
122 "babel-traverse": "6.20.0",
123 "babel-types": "6.20.0",
124 "babylon": "6.14.1",
125 "babylon-ast-dependencies": "1.0.2",
126 "babylon-jsx": "1.0.0",
127 "compare-semver": "1.1.0",
128 "lodash": "4.17.1",
129 "md5": "2.2.1",
130 "pascal-case": "1.1.2",
131 "resolve": "1.2.0"
132 }
133}