-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "@artkit/connect",
"version": "0.0.4",
"description": "A library to embed in generative art webpages",
"main": "lib/index.js",
"browser": "dist/index.js",
"files": [
"lib",
"dist"
],
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build:node && npm run build:web",
"build:node": "tsc --declaration",
"build:watch": "tsc --declaration --watch",
"build:web": "webpack --env production",
"clean": "rm -rf ./lib ./dist",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"repository": "https://github.com/dabbott/artkit-connect",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5",
"semi": false
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"lib"
]
}
}