-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 944 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": "@hamstudy/flamp",
"version": "1.1.7",
"author": "HamStudy.org LLC",
"license": "SEE LICENSE IN LICENSE",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p . && cp src/*.js dist/",
"clean": "rm -rf dist/",
"prepublish": "tsc -p . && cp src/*.js dist/ && rm -rfv dist/*.test.*",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HamStudy/flamp-js.git"
},
"keywords": [
"amp",
"flamp"
],
"bugs": {
"url": "https://github.com/HamStudy/flamp-js/issues"
},
"homepage": "https://github.com/HamStudy/flamp-js#readme",
"peerDependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"node-base91": "^0.3.4",
"ts-jest": "^24.0.2",
"tslib": "^1.9.3",
"typescript": "~3.2.2"
},
"files": [
"dist/"
]
}