-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
46 lines (46 loc) · 1.34 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": "string-pixel-width",
"version": "1.11.0",
"description": "String pixel width measurement on the backend in Javascript",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"lint": "gulp lint",
"compile": "babel src --out-dir lib && echo 'Successfully compiled'",
"prepublish": "npm run compile",
"ci:upload-coverage": "cat ./coverage/lcov.info | coveralls",
"ci": "npm run lint && npm run compile && npm test -- --coverage && npm run ci:upload-coverage"
},
"keywords": [
"string",
"pixel width"
],
"author": "Adam Bisek <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adambisek/string-pixel-width.git"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"jest": "^18.1.0"
},
"dependencies": {
"lodash.deburr": "^4.1.0"
}
}