-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.67 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
{
"version": "0.1.16",
"main": "cjs/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"esnext": "es/index.js",
"scripts": {
"build": "yarn run build:es && yarn run build:cjs",
"build:es": "rimraf es && cross-env NODE_ENV=production BABEL_ENV=es babel src --out-dir es && npm run prettier:es",
"build:cjs": "rimraf cjs && cross-env NODE_ENV=production BABEL_ENV=cjs babel src --out-dir cjs && npm run prettier:cjs",
"build:publish": "yarn run build && yarn publish --access public",
"edit": "atom ./",
"watch:es": "cross-env NODE_ENV=development BABEL_ENV=es babel ./src -w --out-dir es",
"prettier:es": "prettier --single-quote --no-semi --no-bracket-spacing --trailing-comma es5 --write \"es/**/*.js\"",
"prettier:cjs": "prettier --single-quote --no-semi --no-bracket-spacing --trailing-comma es5 --write \"cjs/**/*.js\""
},
"author": "Jared Lunde <[email protected]> (https://github.com/jaredlunde)",
"sideEffects": false,
"analyze": true,
"license": "MIT",
"repository": "https://github.com/jaredlunde/render-props/tree/master/packages/will-change",
"name": "@render-props/will-change",
"devDependencies": {
"@stellar-apps/babel-preset-es": "^1.0.4",
"@stellar-apps/babel-preset-react": "^1.0.1",
"prettier": "^1.10.2"
},
"dependencies": {
"@babel/runtime": "^7.4.0",
"@render-props/events": "^0.1.2",
"@render-props/toggle": "^0.1.20",
"@render-props/utils": "^0.2.1"
},
"peerDependencies": {
"prop-types": ">= 15.6.0",
"react": ">= 16.0.0"
},
"keywords": [
"react",
"render props",
"function as child",
"hoc",
"state container",
"css",
"will-change"
]
}