-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 750 Bytes
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
{
"name": "path-generator",
"version": "2.2.0",
"description": "A easy motion profile path generator",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Matan Steinmetz <matanabc@gamil.com>",
"repository": "https://github.com/matanabc/path-generator.git",
"license": "ISC",
"keywords": [
"frc",
"ftc",
"first",
"pathgenerator",
"motion profile"
],
"scripts": {
"test": "jest --config jest.config.js",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"files": [
"lib/*"
]
}