-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.25 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
{
"name": "get-selection-range-from-elm",
"version": "2.0.1",
"description": "window.getSelection().rangeAt(0) but only if it exists & is within an element",
"main": "dist/index.js",
"scripts": {
"test": "browserify -t babelify -d test.js | devtool -c -q --bf -h | faucet && semistandard | snazzy",
"build": "rm -rf dist && mkdir -p dist && babel lib --out-dir dist",
"watch": "rm -rf dist && mkdir -p dist && babel -w lib --out-dir dist",
"prepublish": "npm run build",
"posttest": "package-json-to-readme package.json > readme.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/get-selection-range-from-elm.git"
},
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/get-selection-range-from-elm/issues"
},
"homepage": "https://github.com/micnews/get-selection-range-from-elm#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-tape-runner": "^2.0.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"devtool": "^2.0.2",
"faucet": "0.0.1",
"package-json-to-readme": "^1.5.1",
"semistandard": "^8.0.0",
"snazzy": "^4.0.0",
"tapava": "^2.2.0"
}
}