-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 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
{
"name": "react-text-2-list",
"version": "1.1.1",
"keywords": [
"react",
"textarea",
"list",
"input list",
"paste to list"
],
"description": "React component consisting of textarea with input list",
"main": "./lib/index.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js Components --out-dir lib",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.js --hot --progress --colors --port 8081 --open",
"test": "mocha -r mock-local-storage --compilers js:babel-core/register --require ./test/test.js \"test/**/*@(.test.js|.test.jsx)\"",
"prepublish": "npm run build",
"postpublish": "rm -rf ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gogoair/react-text-2-list.git"
},
"author": "Bojan Todorovic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gogoair/react-text-2-list/issues"
},
"homepage": "https://github.com/gogoair/react-text-2-list#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-immutable": "^1.5.4",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"mock-local-storage": "^1.0.2",
"prettier": "^1.9.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^16.0.0",
"react-test-utils": "0.0.1",
"sinon": "^1.17.4",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4"
},
"dependencies": {
"lodash.uniq": "^4.5.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": ">15.6.1",
"react-dom": ">15.6.1"
}
}