-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1003 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1003 Bytes
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
{
"name": "@feakin/cli",
"version": "0.3.0",
"description": "cli",
"main": "src/index.js",
"typings": "src/index.d.ts",
"bin": {
"feakin": "./bin/feakin"
},
"module": "build/src/index.js",
"repository": "https://github.com/phodal/@feakin/cli",
"license": "MIT",
"keywords": [],
"scripts": {
"test": "react-scripts test --watchAll=false"
},
"publishConfig": {
"directory": "dist"
},
"dependencies": {
"@feakin/exporter": "^0.3.0",
"@feakin/parser": "^0.3.0",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.12"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(roughjs|points-on-curve|path-data-parser|points-on-path|konva))"
],
"resetMocks": false
},
"files": [
"bin/feakin",
"src/**",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"gitHead": "8c6457d2f5bf987f8edb6049e9a32813a2f50d80"
}