-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "stroke-width-transform",
"version": "1.0.1",
"description": "Stroke width transform",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"test": "run-s testonly eslint",
"testonly": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/image-js/stroke-width-transform.git"
},
"keywords": [],
"author": "Jefferson Javier Hernández Panqueba",
"license": "MIT",
"bugs": {
"url": "https://github.com/image-js/stroke-width-transform/issues"
},
"homepage": "https://github.com/image-js/stroke-width-transform#readme",
"jest": {
"testEnvironment": "node",
"transformIgnorePatterns": [
"dist/ccv_wasm.wasm",
"dist/ccv_wasm.js",
"dist/ccv.js"
]
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"eslint": "^4.16.0",
"eslint-config-cheminfo": "^1.14.1",
"eslint-plugin-jest": "^21.7.0",
"jest": "^22.1.4",
"npm-run-all": "^4.1.2",
"rollup": "^0.55.1",
"image-js": "^0.16.1"
},
"dependencies": {}
}