This repository has been archived by the owner on Feb 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.33 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
{
"name": "beater-helpers",
"description": "A collection of helper functions for beater",
"version": "2.0.0",
"author": {
"email": "[email protected]",
"name": "bouzuya",
"url": "https://bouzuya.net/"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "10"
}
}
],
"power-assert"
]
},
"bugs": {
"url": "https://github.com/bouzuya/beater-helpers/issues"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@types/node": "^10.17.14",
"@types/power-assert": "^1.5.0",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-preset-power-assert": "^3.0.0",
"beater": "^9.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prefer-arrow": "^1.1.7",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"sinon": "^9.0.0",
"typescript": "^3.7.4",
"watch": "^1.0.2"
},
"files": [
"fixture.d.ts",
"fixture.js",
"name.d.ts",
"name.js",
"index.d.ts",
"index.js"
],
"homepage": "https://github.com/bouzuya/beater-helpers#readme",
"keywords": [],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bouzuya/beater-helpers.git"
},
"scripts": {
"build": "npm-run-all -s \"build:lint\" \"build:format\" \"build:es2015\" \"build:es5\" \"build:lib\"",
"build:es2015": "tsc",
"build:es5": "babel --out-dir .tmp/es5/ .tmp/es2015/",
"build:format": "prettier --check '{src,test}/**/*.ts'",
"build:lib": "babel --copy-files --no-comments --out-dir . .tmp/es2015/src/",
"build:lint": "eslint '{src,test}/**/*.ts'",
"clean": "rimraf \".tmp\" \"*.js\" \"*.d.ts\"",
"format": "prettier --write '{src,test}/**/*.ts'",
"prepare": "npm-run-all -s \"clean\" \"build\"",
"test": "node .tmp/es5/test/index.js",
"watch": "npm-run-all -p \"watch:*\"",
"watch:es2015": "npm run build:es2015 -- --watch",
"watch:es5": "npm run build:es5 -- --watch",
"watch:test": "watch \"npm run test\" \".tmp/es5/\""
},
"types": "index.d.ts"
}