1 | {
|
2 | "name": "artgenjs",
|
3 | "version": "1.1.1",
|
4 | "description": "A lightweight dependency-free Javascript library to create generative art.",
|
5 | "repository": "https://www.github.com/kevinbai0/ArtGen.git",
|
6 | "main": "dist/artgen.bundle.js",
|
7 | "types": "dist/types/index.d.ts",
|
8 | "files": [
|
9 | "dist/artgen.bundle.js",
|
10 | "dist/types"
|
11 | ],
|
12 | "scripts": {
|
13 | "build": "webpack --config webpack.prod.js",
|
14 | "dev": "webpack-dev-server --mode development --config webpack.dev.js",
|
15 | "snapshots:test": "webpack --config webpack.snapshot.js && node dist/snapshots.bundle.js",
|
16 | "snapshots:save": "webpack --config webpack.snapshot.js && node dist/snapshots.bundle.js --save",
|
17 | "test:performance": "webpack --config webpack.performance.js && node dist/performance.bundle.js",
|
18 | "lint": "eslint \"{src,test}/**/**/*.{ts,js}\" \"{src,test}/**/*.{ts,js}\" \"{src,test}/*.{ts,js}\"",
|
19 | "prepublishOnly": "npm run lint && npm run tsc && npm run build",
|
20 | "tsc": "tsc && eslint ./dist/types/**/**/*.ts --fix && eslint ./dist/types/**/*.ts --fix && eslint ./dist/types/*.ts --fix",
|
21 | "test": "npm run snapshots:test && jest"
|
22 | },
|
23 | "homepage": "https://github.com/kevinbai0/artgen#readme",
|
24 | "keywords": [],
|
25 | "author": {
|
26 | "name": "Kevin Bai",
|
27 | "email": "kevin.c.bai0@gmail.com",
|
28 | "url": "https://www.kevinbai.design"
|
29 | },
|
30 | "bugs": {
|
31 | "url": "https://github.com/kevinbai0/artgen/issues",
|
32 | "email": "kevin.c.bai0@gmail.com"
|
33 | },
|
34 | "license": "GNU",
|
35 | "devDependencies": {
|
36 | "@babel/core": "^7.7.2",
|
37 | "@babel/plugin-proposal-class-properties": "^7.7.0",
|
38 | "@babel/preset-env": "^7.7.1",
|
39 | "@babel/preset-typescript": "^7.7.2",
|
40 | "@types/jest": "^24.0.25",
|
41 | "@typescript-eslint/eslint-plugin": "^2.13.0",
|
42 | "@typescript-eslint/parser": "^2.13.0",
|
43 | "babel-loader": "^8.0.6",
|
44 | "eslint": "^6.8.0",
|
45 | "eslint-config-prettier": "^6.8.0",
|
46 | "eslint-loader": "^3.0.3",
|
47 | "eslint-plugin-prettier": "^3.1.2",
|
48 | "jest": "^24.9.0",
|
49 | "prettier": "1.19.1",
|
50 | "typescript": "^3.7.2",
|
51 | "webpack": "^4.41.2",
|
52 | "webpack-cli": "^3.3.10",
|
53 | "webpack-dev-server": "^3.9.0",
|
54 | "webpack-merge": "^4.2.2"
|
55 | }
|
56 | }
|