This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "immview",
"version": "3.2.10",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/arturkulig/immview"
},
"scripts": {
"start": "NODE_ENV=testing jest",
"build": "rm -rf ./dist/*; npm run build:bundled; npm run build:unbundled",
"build:bundled": "NODE_ENV=production webpack -p",
"build:unbundled": "tsc --declaration --outDir ./dist ; rm -rf ./dist/*.spec.d.ts ; rm -rf ./dist/*.spec.js ; rm -rf ./dist/*.spec.js.map",
"preversion": "npm run test && npm run build",
"lint": "tslint --project ./tsconfig.json --config ./tslint.json --fix --format stylish",
"test": "tsc --noEmit && npm run lint && jest",
"debug": "node --inspect --debug-brk ./node_modules/.bin/jest -i --runInBand"
},
"author": "Artur Kulig",
"contributors": [
{
"name": "Sebastian Szewczyk",
"url": "https://github.com/sebryu"
}
],
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.5.40",
"@types/node": "^7.0.5",
"awesome-typescript-loader": "^3.1.3",
"jest": "^20.0.3",
"tslint": "^4.4.2",
"uglify-js": "^2.8.23",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.5.1"
},
"engines": {
"node": ">=6"
},
"jest": {
"verbose": false,
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"roots": [
"<rootDir>/src"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
".*\\.tsx?$": "<rootDir>/jest-ts-preprocessor.js"
}
},
"dependencies": {
"typescript": "^2.5.2"
}
}