-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "@lucamonfredo/johnnymnemonic",
"version": "0.3.3",
"description": "Ultra easy and lightweight autocomplete input for React",
"homepage": "https://github.com/lucamonfredo/johnnymnemonic",
"repository": {
"type": "git",
"url": "https://github.com/lucamonfredo/johnnymnemonic.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist & rollup -c",
"watch": "rm -rf dist & rollup -cw",
"example": "rollup -c rollup.config.example.js"
},
"keywords": [
"autocomplete",
"react"
],
"author": "Luca Monfredo <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-1": "^7.0.0",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-collect-sass": "^1.0.9",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sass": "^0.9.2",
"rollup-plugin-terser": "^2.0.2",
"rollup-plugin-typescript2": "^0.17.0",
"rollup-plugin-visualizer": "^0.9.0",
"serve": "^10.0.0",
"typescript": "^3.0.3"
}
}