-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "@element-ts/chlorine",
"version": "0.1.0",
"description": "An abstracted, async, easy to use, type-safe function invocation event handler framework.",
"keywords": [
"event",
"handler",
"typescript",
"function",
"implement",
"invoke"
],
"main": "js/index",
"types": "dts/index",
"files": [
"js",
"dts"
],
"scripts": {
"test": "npm run compile && jest --config=jest.config.js",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && /usr/local/bin/tsc -p tsconfig.json",
"watch": "tsc -w -p .",
"clean": "rm -rf js && rm -rf dts",
"start": "npm run compile && node js/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/element-ts/chlorine.git"
},
"publishConfig": {
"access": "public"
},
"author": "Elijah Cobb <[email protected]> (https://elijahcobb.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/element-ts/chlorine/issues"
},
"homepage": "https://github.com/element-ts/chlorine#readme",
"dependencies": {
"@elijahjcobb/prom-type": "latest",
"@element-ts/oxygen": "latest",
"@elijahjcobb/better-json": "latest",
"@element-ts/neon": "latest"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest",
"tslint": "latest",
"jest": "latest",
"@types/jest": "latest"
}
}