-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "react-ascii-char-split",
"version": "1.0.1",
"private": false,
"author": "Y.Shing (https://www.yshing.hk/)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-plugin-react-transform": "^3.0.0",
"cross-env": "^5.1.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "3.0.1",
"react-test-renderer": "^16.1.1",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": ">=15.5.0",
"react-dom": ">=15.5.0"
},
"main": "lib/index.js",
"scripts": {
"test": "react-scripts test --env=jsdom",
"jest-coverage": "yarn run test -- --coverage",
"prepublish": "npm run build",
"clean": "rimraf lib",
"build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_ENV=commonjs babel src --out-dir lib/ --ignore *.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/yshing/react-ascii-char-split.git"
}
}