-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
51
52
53
54
{
"name": "battle-lines",
"version": "1.0.2",
"description": "Creates abstract images in the form of irregular rounded lines",
"main": "./dist-cjs/index.js",
"module": "./dist-esm/index.js",
"author": "Kieran Fleckney",
"license": "MIT",
"keywords": [
"abstract",
"irregular",
"rounded",
"lines",
"rounded lines",
"generater"
],
"repository": {
"type": "git",
"url": "https://github.com/KieranFleckney/Battle-Lines"
},
"files": [
"dist-cjs",
"dist-esm"
],
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:bundle",
"build:esm": "npx tsc -m es6 --outDir dist-esm",
"build:cjs": "npx tsc",
"build:bundle": "npx webpack",
"clean": "npx shx rm -rf dist dist-esm dist-cjs",
"tsc": "npx tsc",
"tsc:w": "npx tsc -watch",
"test": "karma start karma.conf.js"
},
"devDependencies": {
"@types/jasmine": "^3.5.11",
"@types/node": "^14.0.14",
"karma": "^5.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^3.3.1",
"karma-spec-reporter": "0.0.32",
"karma-summary-reporter": "^1.8.0",
"karma-webpack": "^4.0.2",
"shx": "^0.3.2",
"ts-loader": "^8.0.1",
"tsutils": "^3.17.1",
"typescript": "^3.9.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {}
}