-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.13 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@8base/generators",
"version": "0.33.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:clean": "rm -rf dist",
"build": "yarn build:clean && yarn build:types && yarn build:js",
"build:types": "yarn tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts\" --source-maps inline",
"watch": "npm run build -- --watch",
"tslint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
"test": "cross-env NPM_ENV=test jest",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@8base/schema-name-generator": "^0.1.6",
"@8base/utils": "^0.30.0",
"@babel/runtime": "^7.3.1",
"change-case": "^3.1.0",
"copyfiles": "^2.1.0",
"ejs": "^2.6.1",
"os": "^0.1.1",
"pluralize": "^7.0.0",
"prettier": "^1.16.4",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/change-case": "^2.3.1",
"@types/ejs": "^2.6.3",
"@types/node": "^12.0.0",
"@types/pluralize": "^0.0.29",
"@types/prettier": "^1.16.3",
"@types/ramda": "^0.26.8",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-inline-import": "^3.0.0",
"cross-env": "^5.2.0",
"documentation": "^8.0.0",
"flow-copy-source": "^2.0.2",
"jest": "^23.1.0",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.5"
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/**",
"!<rootDir>/**/__tests__/**"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
},
"license": "MIT"
}