-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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": "html-figma",
"version": "0.3.1",
"description": "Convert DOM node to Figma Node",
"repository": {
"type": "git",
"url": "https://github.com/sergcen/html-to-figma"
},
"scripts": {
"start": "parcel tests/page/index.html",
"publish:package": "npm run build:package && cd build && npm publish",
"build:package": "tsc --project tsconfig.json && cp README.md ./build && cp package.json ./build",
"build:tests": "parcel build tests/page/index.ts --no-minify && cp -R tests/page/stubs dist/",
"serve:tests": "serve -s tests/page -p 3000",
"test": "npm run build:tests && jest tests/*.test.js"
},
"author": "Sergei Savelev",
"license": "MIT",
"devDependencies": {
"@figma/plugin-typings": "^1.19.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"cssnano": "^5.0.6",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^5.3.2",
"jest": "^26.6.3",
"postcss": "^8.3.2",
"puppeteer": "^9.1.1",
"react-docgen-typescript": "^1.22.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.4",
"typescript": "^4.2.4",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"jest-dev-server": "^5.0.3",
"jest-puppeteer": "^5.0.4"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
},
"dependencies": {
"file-type": "^12.2.0"
},
"jest": {
"globalSetup": "./tests/setup.js",
"preset": "jest-puppeteer"
}
}