-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "constantine",
"version": "0.2.0",
"description": "Copy constants from one language to another",
"repository": "https://github.com/calebmchenry/constantine",
"main": "dist/lib/index.js",
"bin": "dist/bin/index.js",
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"bin": "node dist/bin/index.js",
"build": "tsc",
"build:watch": "tsc -w",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"test": "npm run lint && jest",
"test:watch": "jest --watch",
"deploy": "npm test && npm run clean && npm run build && npm publish"
},
"keywords": [
"constants",
"copy",
"languages"
],
"author": {
"name": "Caleb McHenry",
"email": "calebmchenry@gmail.com"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"dependencies": {
"commander": "^3.0.2"
}
}