-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 969 Bytes
/
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
{
"name": "rainx",
"version": "0.0.1",
"description": "A React Like JavaScript Library For Building User Interfaces.",
"main": "dist/rainx.common.js",
"module": "dist/rainx.esm.js",
"browser": "dist/rainx.umd.js",
"directories": {
"example": "example"
},
"scripts": {
"dev": "rollup -c --watch",
"test": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-react-jsx": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"rollup": "^1.27.9",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^3.7.3"
},
"dependencies": {}
}