-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1001 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
42
43
{
"concordiaPlugin": true,
"name": "concordialang-fake-plugin",
"version": "0.1.2",
"description": "Fake plug-in",
"license": "MIT",
"author": "Thiago Delgado Pinto",
"bugs": {
"url": "https://github.com/concordialang/fake-plugin/issues"
},
"homepage": "https://github.com/concordialang/fake-plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/concordialang/fake-plugin.git"
},
"keywords": [
"concordia",
"concordialang",
"plugin",
"example",
"fake"
],
"files": [
"dist/index.*"
],
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"test": "echo \"No tests\"",
"all": "npm run build && npm run test",
"preversion": "npm run build && npm run test"
},
"dependencies": {
"concordialang-plugin": "^1.3.2",
"concordialang-types": "^2.1.6"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
}
}