-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "@agama/platform",
"version": "0.1.1",
"description": "Utility library to get information about platform",
"keywords": [
"agama",
"isomorphic",
"utility",
"platform"
],
"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 not implemented yet",
"prepublish": "npm run build"
},
"author": {
"name": "Albert Cuartiella",
"email": "cuarti1992@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuarti/agama-platform.git"
},
"homepage": "https://github.com/cuarti/agama-platform#readme",
"bugs": {
"url": "https://github.com/cuarti/agama-platform/issues"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^8.0.0",
"awesome-typescript-loader": "^3.1.3",
"typescript": "^2.3.2",
"webpack": "^3.0.0"
},
"browser": {
"./src/platforms/nodejs.ts": false
}
}