-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "esquisse-ascii",
"version": "0.1.0",
"author": "Jeremy Bensimon <bensimon.jeremy@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"start": "parcel src/ui/index.html --open",
"build": "rimraf dist && parcel build src/ui/index.html --no-source-maps",
"pages": "gh-pages -d dist",
"test": "jest --watchAll --verbose false"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupTestFrameworkScriptFile": "<rootDir>/jest-matchers.ts",
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
}
},
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
},
"dependencies": {
"bootstrap": "^4.1.3",
"rxjs": "^6.3.3",
"vue": "^2.5.17",
"vue-class-component": "^6.3.2",
"vue-property-decorator": "^7.2.0"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"gh-pages": "^2.0.1",
"jest": "^23.6.0",
"parcel-bundler": "^1.10.3",
"rimraf": "^2.6.2",
"sass": "^1.14.3",
"ts-jest": "^23.10.4",
"typescript": "^3.1.3"
}
}