-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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": "fulcrum-core",
"version": "1.4.6",
"description": "Fulcrum Core",
"homepage": "http://github.com/fulcrumapp/fulcrum-core",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register ./test/setup.js ./test/test.js ./test/track.js ./test/elements/*.js ./test/values/*.js",
"simpletest": "mocha -r ts-node/register ./test/setup.js ./test/test.js ./test/elements/*.js ./test/values/*.js",
"prepublish": "yarn run clean && yarn run build",
"lint": "eslint src/* src/**/*",
"build": "tsc",
"clean": "rm -rf dist",
"typecheck": "tsc -b"
},
"author": "Fulcrum",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/fulcrumapp/fulcrum-core.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"chai": "^4.3.7",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"async": "^3.2.4",
"lodash": "^4.17.21",
"mixmatch": "^0.0.4",
"relative-date": "^1.1.3",
"uuid": "^9.0.0"
},
"keywords": [
"fulcrum"
]
}