-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.45 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
{
"name": "scalar-field-painter",
"version": "0.0.0",
"license": "MIT",
"description": "",
"main": "dist/ScalarFieldPainter.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"test": "karma start --browsers ChromeHeadless --single-run",
"test:watch": "karma start --browsers ChromeHeadless",
"test:firefox": "karma start --browsers Firefox --single-run",
"test:firefox:watch": "karma start --browsers Firefox",
"tsc": "tsc",
"build": "rollup -c",
"dev": "rollup -c -w",
"format": "prettier --write \"src/**/*.ts\"",
"check-format": "prettier --list-different \"src/**/*.ts\""
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.3",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^5.2.7",
"expect.js": "^0.3.1",
"karma": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "latest",
"mocha": "^6.2.0",
"prettier": "2.1.2",
"rollup": "^2.66.1",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^9.2.3",
"tslib": "^2.3.1",
"typescript": "latest"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "",
"contributors": [],
"bugs": {
"url": ""
},
"homepage": ""
}