@supernovaio/supernova-sdk
Version:
Supernova.io Developer SDK
121 lines • 4.32 kB
JSON
{
"name": "@supernovaio/supernova-sdk",
"version": "1.9.53",
"description": "Supernova.io Developer SDK",
"main": "build/supernova-sdk-typescript.js",
"typings": "build/Typescript/src/index.d.ts",
"repository": "https://github.com/Supernova-Studio/sdk-typescript",
"license": "MIT",
"keywords": [
"Supernova",
"Design Systems",
"Supernovaio",
"SDK",
"Design Tokens",
"Tokens",
"Assets",
"Components",
"Documentation",
"Markdown",
"CMS"
],
"files": [
"build"
],
"scripts": {
"describe": "npm-scripts-info",
"build": "run-s clean && run-p build:*",
"build:main": "webpack --mode development --config ./webpack.config.main.js",
"build:production": "webpack --mode production --config ./webpack.config.main.js",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test-build": "npm run build",
"test": "run-s build:main test:*",
"test-skipped:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different",
"test:unit": "npm run build && ava --verbose --timeout=180s --serial",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
"reset": "git clean -dfx && git reset --hard && npm i",
"clean": "trash build test",
"prepare-release": "run-s reset test cov:check doc:html version doc:publish",
"publish-package": "npm run build:production && npm publish --access public",
"publish-package-debug": "npm run build:main && npm publish --access public",
"typecheck": "tsc --noEmit"
},
"scripts-info": {
"info": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"fix": "Try to automatically fix any linting problems",
"test": "Lint and unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
"cov": "Rebuild, run tests, then create and open the coverage report",
"doc": "Generate HTML API documentation and open it in a browser",
"doc:json": "Generate API documentation in typedoc JSON format",
"version": "Bump package.json version, update CHANGELOG.md, tag release",
"reset": "Delete all untracked files and reset the repo to the last commit",
"prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"abab": "^2.0.5",
"async-mutex": "^0.3.1",
"color-string": "^1.9.1",
"color2k": "^2.0.0",
"expr-eval": "^2.0.2",
"fuse.js": "^6.6.2",
"https-proxy-agent": "^7.0.2",
"lodash": "~4.17.21",
"ml-matrix": "^6.10.4",
"node-fetch": "^2.7.0",
"parse-color": "^1.0.0",
"postcss-calc-ast-parser": "^0.1.4",
"string.prototype.matchall": "^4.0.8",
"tinycolor2": "^1.4.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@types/lodash": "^4.14.159",
"@types/node": "^14.14.6",
"@types/tinycolor2": "^1.4.3",
"@types/uuid": "^8.3.0",
"ava": "5.2.0",
"dotenv": "^16.0.0",
"npm-run-all": "4.1.5",
"prettier": "^1.18.2",
"trash-cli": "^5.0.0",
"ts-loader": "^9.2.6",
"ts-node": "10.9.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.5",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"src/**/*.spec.ts"
],
"require": [
"ts-node/register",
"dotenv/config"
]
},
"config": {},
"prettier": {
"singleQuote": true,
"parser": "typescript",
"useTabs": false,
"tabWidth": 2,
"printWidth": 120,
"endOfLine": "lf",
"semi": false
}
}