-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "vanad",
"description": "Experimental Testing framework.",
"keywords": [
"testing",
"vanad",
"e2e",
"unit"
],
"homepage": "https://github.com/smuszel/vanad",
"repository": {
"type": "git",
"url": "https://github.com/smuszel/vanad"
},
"version": "0.1.1",
"author": "smuszel",
"license": "ISC",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./types/index.d.ts",
"bin": "./bin/vanad.js",
"scripts": {
"prep": "yarn clean && yarn typegen && yarn prettify && yarn lint && yarn test && yarn build",
"clean": "rimraf dist",
"typegen": "tsc",
"prettify": "prettier ./**/*.ts --write",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"test": "node ./bin/vanad.js --babel",
"build": "rollup -c rollup.config.js"
},
"files": [
"bin",
"dist",
"types",
"index.js",
"README.md"
],
"dependencies": {
"ansi-escapes": "^4.2.0",
"chokidar": "^3.0.2",
"concordance": "^4.0.0",
"glob": "^7.1.4",
"mri": "^1.1.4"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-typescript": "^7.5.2",
"@babel/register": "^7.4.4",
"@types/glob": "^7.1.1",
"@types/jsdom": "^12.2.4",
"@types/node": "^12.6.3",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3"
}
}