-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.19 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
{
"name": "save-selection",
"version": "2.0.2",
"description": "Save & restore selections in a document, using `<mark>` elements",
"main": "dist/index.js",
"scripts": {
"test": "browserify test.js --transform babelify | testron && 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": "readme package.json > readme.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/save-selection.git"
},
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/save-selection/issues"
},
"homepage": "https://github.com/micnews/save-selection#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^14.4.0",
"electron-prebuilt": "^0.37.6",
"package-json-to-readme": "^1.5.1",
"semistandard": "^7.0.5",
"snazzy": "^3.0.1",
"tape": "^4.5.1",
"testron": "^1.2.0"
},
"dependencies": {
"get-selection-range-from-elm": "^2.0.1"
}
}