-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "is-node-process",
"description": "Reliably determines if the code is running in Node.js",
"version": "1.2.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"default": "./lib/index.mjs"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mswjs/is-node-process"
},
"scripts": {
"browser": "open test/browser.html",
"electron": "electron test/fixtures/electron.js",
"test": "jest --testPathIgnorePatterns electron.test.ts",
"test:react-native": "cd test/fixtures/react-native && pnpm test",
"build": "tsup",
"release": "release publish",
"prepublishOnly": "pnpm build"
},
"files": [
"lib"
],
"devDependencies": {
"@ossjs/release": "^0.5.1",
"@types/jest": "^27.0.0",
"@types/node": "^18.14.0",
"electron": "^19.0.6",
"jest": "^27.0.6",
"playwright": "^1.22.2",
"spectron": "^15.0.0",
"ts-jest": "^27.0.3",
"tsup": "^6.2.3",
"typescript": "^4.3.5"
}
}