forked from JXA-userland/JXA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"private": true,
"name": "example",
"version": "1.3.4",
"description": "@jxa example",
"homepage": "https://github.com/JXA-userland/JXA/tree/master/example/",
"bugs": {
"url": "https://github.com/JXA-userland/JXA/issues"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/example.js",
"types": "lib/example.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/JXA-userland/JXA.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production tsc -p .",
"clean": "rimraf lib/",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"watch": "tsc -p . --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"dependencies": {
"@jxa/global-type": "^1.3.4",
"@jxa/run": "^1.3.4"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"cross-env": "^6.0.3",
"mocha": "^6.2.2",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-node": "^8.4.1",
"ts-node-test-register": "^8.0.1",
"typescript": "^3.6.4"
}
}