-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 928 Bytes
/
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
{
"name": "@getspectra/spectra-js",
"version": "0.0.0",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Palm Civet",
"email": "[email protected]",
"url": "https://github.com/palmcivet/"
},
"repository": {
"type": "git",
"url": "https://github.com/getspectra/spectra-js"
},
"description": "JavaScript implementation of the Spectra DSL.",
"keywords": [
"DSL",
"permissions",
"spectra",
"figma"
],
"type": "module",
"scripts": {
"dev": "jest --watchAll",
"build": "rimraf build && tsc -b tsconfig.build.json",
"test": "jest",
"test:cov": "rimraf coverage && jest --coverage"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@getspectra/spectra-typings": "^0.0.6"
}
}