-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "svg-path-morph",
"version": "1.0.5",
"description": "Small library for morphing bewtween multiple SVG paths.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run build && ts-node src/index.ts",
"test": "nyc --reporter=json-summary --reporter=text mocha -r ts-node/register 'src/**/*.test.ts'",
"demo": "npm run build && npx webpack --config webpack.config.js",
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Minibrams/svg-path-morph.git"
},
"nyc": {
"include": "src",
"exclude": [
"src/presentation.ts",
"*/**/*.test.ts"
]
},
"keywords": [
"svg",
"morph",
"multiple",
"path",
"interpolate"
],
"author": "Anders Brams",
"license": "MIT",
"bugs": {
"url": "https://github.com/Minibrams/svg-path-morph/issues"
},
"homepage": "https://github.com/Minibrams/svg-path-morph#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.13",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.15.0",
"eslint-plugin-unused-imports": "^1.0.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.2",
"ts-node": "^10.8.1",
"typescript": "^4.1.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"parse-svg-path": "^0.1.2"
}
}