-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "@neurosity/ipk",
"version": "2.13.0",
"description": "Single source of truth for all inter-process communication constants",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"start": "tsc -w",
"clean": "del dist",
"prebuild": "npm run clean",
"build": "npm run build:cjs && npm run build:esm && npm run build:json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:json": "node ./scripts/to-json.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neurosity/lib-ipk.git"
},
"keywords": [
"neurosity",
"notion",
"ipk"
],
"author": "Alex Castillo",
"license": "MIT",
"bugs": {
"url": "https://github.com/neurosity/lib-ipk/issues"
},
"homepage": "https://github.com/neurosity/lib-ipk#readme",
"devDependencies": {
"@types/node": "^10.5.2",
"del-cli": "^1.1.0",
"mkdirp": "^0.5.1",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
}
}