forked from sysgears/spinjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.41 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "spinjs",
"version": "0.4.166",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf ./lib",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint --fix -p tsconfig.json -c tslint.json",
"tests": "jest",
"tests:watch": "jest --watch",
"test": "yarn tests && yarn lint",
"precommit": "lint-staged",
"prepublishOnly": "yarn clean && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sysgears/jsapp.git"
},
"bugs": {
"url": "https://github.com/sysgears/jsapp/issues"
},
"homepage": "https://github.com/sysgears/jsapp/packages/spinjs#readme",
"files": [
"react-native-polyfills",
"src",
"lib",
"html-plugin-template.ejs",
"spin.config.js",
"spin.js",
"webpack.config.js"
],
"bin": {
"spin": "./spin.js"
},
"devDependencies": {
"@types/inquirer": "^0.0.35",
"@types/ip": "^0.0.30",
"@types/jest": "^23.3.4",
"@types/lodash": "^4.14.71",
"@types/mkdirp": "^0.5.0",
"@types/node": "^7.0.18",
"@types/webpack": "^3.0.10",
"@types/webpack-sources": "^0.1.2",
"@types/yargs": "^8.0.2",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^4.1.3",
"prettier": "^1.6.1",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"tslint": "^5.2.0",
"tslint-config-prettier": "^1.5.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.4.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.{json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"connect-cors": "^0.5.6",
"debug": "^3.1.0",
"detect-port": "^1.2.2",
"dlv": "^1.1.2",
"glob": "^7.1.2",
"humps": "^2.0.1",
"ip": "^1.1.5",
"is-docker": "^1.1.0",
"lodash": "^4.17.4",
"minilog": "^3.1.0",
"mkdirp": "^0.5.1",
"node-fetch": "^2.2.0",
"require-relative": "^0.8.7",
"serve-static": "^1.13.1",
"source-list-map": "^2.0.0",
"source-map": "^0.7.3",
"source-map-support": "^0.4.15",
"webpack-merge": "^4.1.0",
"webpack-sources": "^1.0.1",
"yargs": "^8.0.2"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"parser": "babylon"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}