-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.3 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.3 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
{
"name": "romagny13-html-parser",
"version": "0.1.3",
"description": "TypeScript/JavaScript HTML parser",
"main": "dist/html-parser.js",
"typings": "types/index.d.ts",
"files": [
"dist/html-parser.js",
"dist/html-parser.min.js",
"dist/html-parser.min.gz",
"src",
"types/index.d.ts"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"build:webpack": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build": "node build/build.js",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "karma start"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.38",
"awesome-typescript-loader": "^3.0.0-beta.18",
"chai": "^3.5.0",
"karma": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.1",
"mocha": "^3.2.0",
"rollup": "^0.41.4",
"rollup-plugin-typescript": "^0.8.1",
"tslint": "^4.3.1",
"typescript": "^2.1.5",
"uglify-js": "^2.7.5",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}