-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "insert-text-at-cursor",
"version": "0.2.0",
"description": "Cross-browser lib for inserting text at selection in a textarea / input",
"repository": {
"type": "git",
"url": "git@github.com:grassator/insert-text-at-cursor.git"
},
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"scripts": {
"prepublishOnly": "npm run build",
"watch": "rollup -c rollup.config.js --watch",
"build": "npm run build:dev && npm run build:prod",
"build:dev": "rollup -c rollup.config.js",
"build:prod": "rollup -c rollup.config.js --environment NODE_ENV:production",
"lint": "eslint index.js",
"format": "eslint index.js --fix",
"test": "echo 'Automated tests not available. Open test.html in your browser.'"
},
"keywords": [
"text",
"range",
"selection",
"textarea"
],
"author": "Dmitriy Kubyshkin <dmitriy@kubyshkin.name>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"eslint-config-prettier": "^4.1.0",
"rollup": "^1.9.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-uglify": "^6.0.2",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4"
},
"files": [
"index.js",
"dist/",
"LICENSE",
"test.html"
]
}