-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "react-composition-input",
"version": "1.1.1",
"description": "An input component optimized for languages which need composition such as Chinese, Japanese etc.",
"main": "./lib/index.js",
"scripts": {
"start": "parcel ./demo/index.html -d ./demo/dist &&start localhost:1234",
"build": "babel src --out-dir lib",
"dist": "parcel build ./demo/index.html -d ./demo/dist --public-url ./",
"test": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeoEatle/react-composition-input.git"
},
"files": [
"lib"
],
"keywords": [
"react",
"reactjs",
"react-component",
"composition",
"input",
"form",
"Chinese",
"Japanese"
],
"author": "LeoEatle",
"license": "ISC",
"bugs": {
"url": "https://github.com/LeoEatle/react-composition-input/issues"
},
"homepage": "https://github.com/LeoEatle/react-composition-input#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.18.2",
"eslint-plugin-react": "^7.7.0",
"less": "^3.0.1",
"parcel-bundler": "^1.6.2",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"prop-types": "^15.6.2"
}
}