-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.73 KB
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
{
"name": "react-bpmf",
"description": "React library for displaying Zhuyin Fuhao alongside Chinese characters",
"version": "0.2.0",
"main": "./dist/index.js",
"author": "Derek Chan <dchan3@hawaii.edu>",
"repository": "https://github.com/dchan3/react-bpmf",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-export-default-from": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/plugin-transform-strict-mode": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.2",
"babel-eslint": "^8.2.6",
"babel-plugin-styled-components": "^1.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chai": "^4.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-watch": "^3.1.5",
"mocha": "^5.2.0",
"polished": "^1.9.3",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"dependencies": {
"chinese-to-pinyin": "^0.1.6",
"parcel-bundler": "^1.10.3",
"styled-components": "^4.0.2",
"zhuyin": "^1.7.0"
},
"scripts": {
"test": "mocha --require @babel/register test/test.js",
"prepare": "npm run build",
"build": "babel src -d dist"
},
"keywords": [
"zhuyin fuhao",
"bopomofo",
"chinese",
"chinese language",
"pinyin",
"ruby text"
]
}