-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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": "annotate-ts",
"version": "0.1.0",
"description": "Collection of decorators for TypeScript",
"main": "dist/annotate.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pavlo-iuriichuk/annotate-ts.git"
},
"keywords": [
"TypeScript",
"decorators"
],
"author": "Pavlo Iuriichuk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavlo-iuriichuk/annotate-ts/issues"
},
"homepage": "https://github.com/pavlo-iuriichuk/annotate-ts#readme",
"scripts": {
"build": "TS_NODE_PROJECT=\"./tsconfig-for-webpack-config.json\" ./node_modules/.bin/webpack",
"release": "TS_NODE_PROJECT=\"./tsconfig-for-webpack-config.json\" NODE_ENV=\"production\" ./node_modules/.bin/webpack",
"test": "npm test"
},
"devDependencies": {
"@types/node": "^10.0.4",
"@types/uglifyjs-webpack-plugin": "^1.1.0",
"@types/webpack": "^4.1.4",
"awesome-typescript-loader": "^5.0.0",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"ts-node": "^6.0.3",
"tsc": "^1.20150623.0",
"tsconfig-paths": "^3.3.2",
"typescript": "^2.8.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3"
}
}