forked from tildeio/simple-html-tokenizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 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
{
"name": "simple-html-tokenizer",
"version": "0.5.7",
"license": "MIT",
"description": "Simple HTML Tokenizer is a lightweight JavaScript library that can be used to tokenize the kind of HTML normally found in templates.",
"keywords": [
"html",
"tokenizer"
],
"repository": {
"type": "git",
"url": "https://github.com/tildeio/simple-html-tokenizer.git"
},
"main": "dist/simple-html-tokenizer.js",
"module": "dist/es6/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"!dist/tests"
],
"scripts": {
"build": "ember build",
"prepublish": "rm -rf node_modules/in-repo-commands && ln -s ../commands node_modules/in-repo-commands && rm -rf node_modules/symlink-self && ln -s ../lib/symlink-self node_modules/symlink-self",
"prepare": "ember build",
"test": "ember test && nyc qunit dist/tests/tests.js",
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@types/qunit": "^2.5.0",
"broccoli-concat": "^3.0.5",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^3.0.0",
"broccoli-rollup": "^2.0.0",
"broccoli-tslinter": "^3.0.1",
"broccoli-typescript-compiler": "^2.2.0",
"ember-cli": "^3.0.0",
"got": "^8.2.0",
"in-repo-commands": "file:./commands",
"nyc": "^11.4.1",
"qunit": "^2.5.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"symlink-self": "file:./lib/symlink-self",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}