-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "glide-computed-column",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently 'npm run watch' 'npm run serve'",
"watch": "npm-watch",
"serve": "http-server public --silent --cors -c-1",
"build": "script/build.sh",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glideapps/glide-computed-column.git"
},
"watch": {
"build": {
"patterns": [
"src",
"script"
],
"extensions": "ts,js,sh",
"silent": true
}
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/glideapps/glide-computed-column/issues"
},
"homepage": "https://github.com/glideapps/glide-computed-column#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"concurrently": "^6.3.0",
"esbuild": "^0.12.24",
"http-server": "^13.0.2",
"jest": "^27.1.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"dependencies": {
"dotenv": "^10.0.0",
"npm-watch": "^0.11.0"
}
}