-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.51 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
55
56
57
{
"name": "flat-files",
"version": "1.0.6",
"description": "Get a flatten array of dropped files using FileSystem api",
"scripts": {
"test": "ts-react-toolbox test",
"start": "webpack -w",
"serve": "serve",
"build": "ts-react-toolbox build",
"test-ci": "jest --runInBand --coverage",
"release": "ts-react-toolbox release",
"prepublishOnly": "yarn test-ci && yarn build",
"bootstrap": "ts-react-toolbox init",
"dev": "ts-react-toolbox dev",
"test:ci": "ts-react-toolbox test --runInBand --coverage",
"lint": "ts-react-toolbox lint",
"static": "ts-react-toolbox publish",
"format": "ts-react-toolbox format",
"analyze": "ts-react-toolbox analyze"
},
"repository": "git@github.com:zzarcon/flat-files.git",
"author": "Hector Leon Zarco Garcia <hezarco@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^21.1.5",
"awesome-typescript-loader": "^3.2.3",
"jest": "^21.2.1",
"serve": "^6.2.0",
"ts-react-toolbox": "^0.2.20",
"typescript": "^2.5.3",
"webpack": "^3.7.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(ts|tsx|js)"
]
},
"engines": {
"node": ">=8.5.0"
},
"main": "dist/es5/index.js",
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"types": "dist/es5/index.d.ts",
"files": [
"dist"
],
"keywords": []
}