-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 KB
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
{
"name": "@agama/types",
"version": "0.1.0",
"description": "Utility library to operate with types",
"keywords": [
"agama",
"isomorphic",
"utility",
"functional"
],
"license": "MIT",
"main": "src/index.js",
"typings": "src/index",
"scripts": {
"dev": "tsc --watch",
"build": "npm run build:ts && npm run build:webpack",
"build:ts": "tsc",
"build:webpack": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"author": {
"name": "Albert Cuartiella",
"email": "cuarti1992@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuarti/agama-types.git"
},
"homepage": "https://github.com/cuarti/agama-types#readme",
"bugs": {
"url": "https://github.com/cuarti/agama-types/issues"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.5",
"awesome-typescript-loader": "^3.2.1",
"mocha": "^3.4.2",
"tslint": "^5.4.3",
"typescript": "^2.3.4",
"webpack": "^3.0.0"
}
}