forked from migueloller/accent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
{
"name": "accent",
"description": "A simple library for serializable highlights.",
"version": "0.0.9",
"author": "Miguel Oller <miguel@getshortweb.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/migueloller/accent.git"
},
"keywords": [
"accent",
"highlight",
"annotation",
"selection",
"range"
],
"dependencies": {
"bluebird": "^3.2.2",
"diff-match-patch": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-istanbul": "^0.2.1",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-plugin-react": "^3.16.1",
"isparta": "^4.0.0",
"karma": "^0.13.19",
"karma-browserify": "^5.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^0.1.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.5",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.4",
"rimraf": "^2.5.1",
"watchify": "^3.7.0"
},
"main": "./lib/accent.js",
"files": [
"lib/",
"dist/"
],
"scripts": {
"lint": "eslint ./src/**/*.js ./test/**/*.js ./*.js",
"pretest": "npm run lint",
"test": "karma start",
"babel": "rimraf ./lib && babel ./src --out-dir ./lib",
"browserify": "rimraf ./dist && mkdir ./dist && browserify -t babelify ./src/accent.js > ./dist/accent.js",
"prepublish": "npm run babel && npm run browserify"
}
}