-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.55 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "expoexport",
"version": "5.0.1",
"private": true,
"description": "Text-Style and Asset export for sketch to be used in Expo",
"author": "Consento <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/expo-export.git"
},
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "expoexport",
"manifest": "src/manifest.json",
"main": "expoexport.sketchplugin",
"assets": [
"assets/**/*"
]
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link || echo \"Warning: build and link didn't work\"",
"lint": "eslint --ext .js,.ts .",
"test": "jest"
},
"devDependencies": {
"@skpm/builder": "^0.7.5",
"@skpm/fs": "^0.2.5",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.52",
"@types/react-native": "^0.60.27",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-standard": "^4.0.1",
"expo-linear-gradient": "^8.3.1",
"jest": "^26.5.3",
"react": "^16.9.0",
"react-native": "^0.61.4",
"sketch": "^0.2.0",
"sketch-file": "^0.3.3",
"skpm": "^1.3.1",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"eslintConfig": {
"extends": [
"standard-with-typescript",
"standard-react"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"react/jsx-closing-bracket-location": "off",
"react/jsx-closing-tag-location": "off",
"@typescript-eslint/strict-boolean-expressions": "off"
}
},
"eslintIgnore": [
"node_modules/*",
"dist/*",
"coverage/*",
"**/*.d.ts",
"/src/types/"
],
"dependencies": {
"react-native-svg": "^12.1.0"
},
"bugs": {
"url": "https://github.com/consento-org/expo-export/issues"
},
"homepage": "https://github.com/consento-org/expo-export#readme",
"main": "webpack.skpm.config.js",
"keywords": [
"sketch",
"plugin",
"react-native",
"export"
],
"license": "BSD-3-Clause"
}