-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"private": true,
"name": "test-jasmine-typescript",
"version": "2.0.0",
"scripts": {
"clear:all": "rm -rf node_modules/ npm-debug.log",
"pretest": "cls",
"test": "npm run mocha --recursive src/**/*.spec.ts",
"mocha": "mocha -r ts-node/register --timeout 4000",
"prettier:base": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\""
},
"devDependencies": {
"@types/chai": "4.0.4",
"@types/jasmine": "~2.8.8",
"@types/mocha": "2.2.43",
"@types/node": "^9.4.6",
"@types/node-fetch": "2.1.4",
"@types/ramda": "0.25.45",
"funfix": "7.0.1",
"immer": "1.9.3",
"immutable": "4.0.0-rc.12",
"ramda": "0.26.1",
"rxjs": "6.3.3",
"node-fetch": "2.3.0",
"chai": "4.1.2",
"jasmine": "^3.1.0",
"jasmine-node": "^1.16.2",
"mocha": "3.5.3",
"prettier": "^1.16.1",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
},
"dependencies": {
"object.pick": "^1.3.0",
"reflect-metadata": "^0.1.13",
"resolve-options": "^1.1.0"
},
"main": "index",
"typings": "typings/resolve-options.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/delprzemo/typescript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/delprzemo/typescript/issues"
},
"homepage": "https://github.com/delprzemo/typescript#readme",
"description": ""
}