-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "spars",
"version": "0.2.0",
"description": "A general toolkit for creating interactive web experiences.",
"main": "dist/spars.cjs.js",
"browser": "dist/spars.umd.js",
"module": "dist/spars.esm.js",
"jsnext:main": "dist/spars.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"start": "concurrently \"rollup -c rollup.config.ts -w\" \"parcel examples/index.html --open --https\"",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest --verbose=false",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prebuild": "rimraf dist",
"build": "jest --verbose=false && tsc --module commonjs && rollup -c rollup.config.ts"
},
"author": "Tim van Scherpenzeel",
"license": "MIT",
"dependencies": {
"detect-gpu": "^1.2.0",
"detect-ua": "^1.0.0",
"fontfaceobserver-es": "^3.3.1",
"idb-keyval": "^3.2.0",
"mitt": "^1.2.0",
"webgl-constants": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/webgl2": "^0.0.5",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"concurrently": "^5.1.0",
"jest": "^25.1.0",
"parcel": "^1.12.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^1.31.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"jest": {
"testURL": "http://localhost",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.+(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"<rootDir>/test/constants.ts"
],
"preset": "ts-jest"
}
}