-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 836 Bytes
/
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
{
"name": "parcel-hyperapp-typescript",
"version": "0.0.1",
"description": "Very light frontend development environment",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/parcel ./src/index.html",
"test": "./node_modules/.bin/jest --coverage --no-cache"
},
"license": "MIT",
"dependencies": {
"hyperapp": "^1.2.1",
"picostyle": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^22.2.2",
"jest": "^22.4.3",
"parcel-bundler": "^1.6.2",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}