-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "svg-text",
"version": "0.5.2",
"description": "Utilities for working with SVG, including SvgText for multiline text.",
"main": "./dist/svg-text.js",
"scripts": {
"test": "jest",
"watch": "webpack --watch",
"demo": "http-server -c-1 ./"
},
"repository": {
"type": "git",
"url": "[email protected]:dowjones/svg-text.git"
},
"keywords": [
"svg",
"text",
"multiline"
],
"author": "Adrian Lafond <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.18.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"jest": "^16.0.2",
"jest-cli": "^18.1.0",
"jshint": "^2.9.4",
"jshint-loader": "^0.8.3",
"json-loader": "^0.5.4",
"lodash.assign": "^4.2.0",
"lodash.isfinite": "^3.3.2",
"lodash.merge": "^4.6.0",
"webpack": "^1.13.2"
},
"jest": {
"testRegex": "(/spec/.*|\\.(test|spec))\\.(spec.js|js|json|jsx|node)$"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
}
}