-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
66 lines (66 loc) · 1.86 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
65
66
{
"name": "simple-html-tokenizer",
"version": "0.5.11",
"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"
},
"license": "MIT",
"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",
"lint": "tslint -p tsconfig.json",
"prepare": "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",
"test": "ember test && nyc qunit dist/tests/tests.js"
},
"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",
"release-it": "^14.0.2",
"release-it-lerna-changelog": "^2.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"symlink-self": "file:./lib/symlink-self",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}