-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.78 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
{
"name": "react-slots",
"version": "1.0.0",
"description": "Slotted components in react",
"main": "lib/common/index.js",
"scripts": {
"test": "env NODE_PATH=$NODE_PATH:$PWD/src env NODE_ENV=testing mocha --opts './mocha.opts' 'src/**/*.test.js'",
"build:commonjs": "env NODE_PATH=$NODE_PATH:$PWD/src env NODE_ENV=build-commonjs babel -d lib/commonjs src/SlotComponent",
"build:es6": "env NODE_PATH=$NODE_PATH:$PWD/src env NODE_ENV=build-es6 babel -d lib/es6 src/SlotComponent"
},
"jsnext:main": "lib/es6/index.js",
"author": "Chris Loeper",
"contributors": [
{
"name": "Edward Irby",
"email": "edward@castersblues.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/EdwardIrby/React-Slots.git"
},
"dependencies": {
"react": "^15.4.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-check-es2015-constants": "^6.8.0",
"babel-plugin-dynamic-import-node": "^1.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-classes": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"classnames": "^2.2.5",
"css-modules-require-hook": "^4.0.5",
"expect": "^1.20.2",
"expect-jsx": "^3.0.0",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.1"
}
}