-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "cross-os",
"version": "1.5.0",
"description": "Allow to add OS-specific scripts in your package.json!",
"main": "source/index.js",
"bin": "source/index.js",
"author": {
"name": "Rafael Milewski",
"email": "[email protected]",
"url": "https://github.com/milewski"
},
"license": "MIT",
"homepage": "https://github.com/milewski/cross-os",
"keywords": [
"os-scripts",
"cross-script",
"cross-env-script",
"system-specific",
"windows",
"win32",
"darwin",
"os",
"specific",
"os-specific"
],
"repository": {
"type": "git",
"url": "https://github.com/milewski/cross-os"
},
"bugs": {
"url": "https://github.com/milewski/cross-os/issues"
},
"files": [
"source/*.js",
"test"
],
"scripts": {
"prepublish": "npm run build && npm test",
"build": "tsc",
"test": "mocha --require ts-node/register test/**/*.ts --exit --no-timeouts"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"expect.js": "^0.3.1",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}