-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.15 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
{
"name": "@acaelum/dolly",
"version": "0.0.0",
"description": "Gerador de apostilas de exercícios guaraná!",
"main": "src/index.js",
"bin": {
"dolly": "./bin/index.js"
},
"scripts": {
"_build:clean": "rimraf dist",
"_build:src": "babel src --out-dir dist --extensions \".ts,.tsx,.js\"",
"_mocha:src": "mocha -r ./_setup/test/test-src --colors ",
"_mocha:compiled": "mocha -r ./_setup/test/test-compiled --colors ",
"build": "npm run _build:clean && npm run _build:src",
"type-check": "tsc -p .",
"lint": "eslint --ext \".ts,.js\" ./src ./test",
"lint:fix": "eslint --fix --ext \".ts,.js\" ./src ./test",
"lint:fix-dry-run": "eslint --fix-dry-run --ext \".ts,.js\" ./src ./test",
"test:static": "npm run type-check && npm run lint",
"test": "npm run test:static && npm run build && npm run _mocha:compiled -- \"test/**/*.test.{js,ts}\"",
"watch:build": "chokidar --initial './src/**' 'package.json' -c 'npm run build'",
"watch:test": "npm run _mocha:src -- --inspect --reporter min --watch --watch-extensions js,ts,tsx \"test/**/*.test.{js,ts}\"",
"watch:test:static": "chokidar --initial './src/**' 'package.json' -c 'npm run test:static'",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/chai": "^4.1.7",
"@types/chalk": "^2.2.0",
"@types/common-tags": "^1.8.0",
"@types/expand-tilde": "^2.0.0",
"@types/joi": "^14.0.1",
"@types/json-parse-better-errors": "^1.0.0",
"@types/lodash": "^4.14.134",
"@types/lorem-ipsum": "^1.0.2",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.5",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.12.18",
"@types/object-hash": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^1.0.0",
"@typescript-eslint/parser": "^1.0.0",
"babel-eslint": "^11.0.0-beta.0",
"babel-plugin-module-resolver": "^3.1.1",
"chai": "^4.2.0",
"chokidar-cli": "^1.2.1",
"eslint": "^5.12.0",
"eslint-config-prettier": "^4.2.0",
"eslint-import-resolver-babel-module": "^5.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-prettier": "^3.1.0",
"esm": "^3.0.84",
"mocha": "^5.2.0",
"mock-fs": "^4.7.0",
"prettier": "^1.17.0",
"rimraf": "^2.6.2",
"typescript": "^3.2.2",
"utility-types": "^3.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@types/treeify": "^1.0.0",
"chalk": "^2.4.2",
"common-tags": "^1.8.0",
"core-js": "^3.0.1",
"expand-tilde": "^2.0.2",
"lodash": "^4.17.11",
"lorem-ipsum": "^2.0.3",
"mkdirp": "^0.5.1",
"object-hash": "^1.3.1",
"read-dir-deep": "^6.0.0",
"source-map-support": "^0.5.9",
"strip-indent": "^3.0.0",
"treeify": "^1.1.0",
"what-the-diff": "^0.6.0"
},
"keywords": [],
"author": "Artur Diniz Adam",
"license": " MIT",
"publishConfig": {
"access": "public"
}
}