-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.8 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.8 KB
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
{
"name": "@supernovaio/export-helpers",
"version": "1.0.33",
"description": "Supernova.io Export Helpers and Utilities",
"main": "./build/helpers.js",
"types": "./build/types/src/index.d.ts",
"repository": {
"url": "https://github.com/Supernova-Studio/export-helpers"
},
"license": "MIT",
"keywords": [
"Supernova",
"Supernovaio",
"SDK",
"Utilities",
"Helpers",
"Design Systems",
"Tokens",
"Assets",
"Components"
],
"files": [
"build"
],
"scripts": {
"describe": "npm-scripts-info",
"build": "webpack --mode development --config ./webpack.config.main.js",
"build:production": "webpack --mode production --config ./webpack.config.main.js",
"clean": "trash build test",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges-ng --output \"./badges\"",
"publish-package": "npm run build:production && npm run test && npm publish --access public",
"pretty": "prettier --write \"./**/*.{ts,js}\""
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"@supernovaio/sdk-exporters": "2.3.3",
"change-case": "4.1.2"
},
"devDependencies": {
"@supernovaio/sdk": "2.3.3",
"@types/jest": "^29.5.5",
"dotenv": "^16.0.0",
"jest": "^29.7.0",
"jest-coverage-badges-ng": "^1.0.1",
"prettier": "^2.4.1",
"trash-cli": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tslint": "^5.18.0",
"typescript": "^4.9.5",
"webpack": "^5.66.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"config": {},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}