This repository has been archived by the owner on Sep 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "et-dependency",
"main": "dist/index.js",
"version": "0.4.0",
"description": "The dependency for et-template compiled codes.",
"scripts": {
"clean": "rm -rf dist es5",
"lint": "standard && tslint src/**/*.ts",
"start": "NODE_ENV=dev npm run test",
"prebuild": "npm run clean && npm run lint",
"build": "tsc && webpack --progress && gulp",
"postbuild": "npm run test",
"test": "karma start karma.conf.js",
"deploy": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/et-studio/et-dependency.git"
},
"keywords": [
"et",
"et-template",
"template",
"html"
],
"author": "lynweklm@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/et-studio/et-dependency/issues"
},
"homepage": "https://github.com/et-studio/et-dependency#readme",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"lodash": "^4.11.1",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.7",
"should": "^8.3.1",
"standard": "^6.0.8",
"through2": "^2.0.1",
"ts-loader": "^0.8.2",
"tslint": "^3.7.4",
"typescript": "^1.8.10",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"standard": {
"ignore": [
"dist",
"es5",
"test/server/index.js"
]
},
"files": [
"dist",
"es5",
"README.md"
]
}