-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 870 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
{
"name": "template-string-optimize-loader",
"version": "3.0.0",
"description": "template string optimize loader module for webpack",
"main": "lib/index.js",
"scripts": {
"lib": "tsc -p tsconfig.json",
"test": "bash ./test/test.sh",
"release": "npm run lib && npm publish"
},
"author": "chenjiahan",
"license": "ISC",
"devDependencies": {
"@types/acorn": "^4.0.2",
"@types/escodegen": "^0.0.6",
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"typescript": "^2.2.2",
"webpack": "^2.4.1"
},
"bugs": {
"url": "https://github.com/chenjiahan/template-string-optimize-loader/issues"
},
"homepage": "https://github.com/chenjiahan/template-string-optimize-loader#readme",
"dependencies": {
"acorn": "5.7.4",
"escodegen": "1.11.0"
}
}