-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "tokenizer.js",
"version": "1.3.2",
"description": "A modern runtime text tokenizer, for modern web.",
"main": "build/index.js",
"unpkg": "dist/tokenizer.js",
"typings": "build/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"buildCSS": "lessc styles/tokenizer.less dist/tokenizer.css",
"build": "tsc -p . && npm run buildCSS",
"dist": "npm run build && webpack --config=webpack.config.js",
"test": "npm run build && karma start karma.conf.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "npm run dist"
},
"files": [
"dist",
"build",
"README.md",
"resources"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ashubham/tokenizer.js.git"
},
"keywords": [
"tokenizer",
"auto",
"complete"
],
"author": "ashubham@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashubham/tokenizer.js/issues"
},
"homepage": "https://github.com/ashubham/tokenizer.js#readme",
"devDependencies": {
"@types/detect-browser": "^2.0.0",
"@types/jasmine": "^2.6.2",
"@types/lodash": "^4.14.80",
"@types/rangy": "0.0.31",
"coveralls": "^3.0.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-source-map-support": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.5",
"less": "^2.7.3",
"less-plugin-clean-css": "^1.5.1",
"typescript": "^2.5.3",
"uglifyjs-webpack-plugin": "^1.1.1",
"webpack": "^3.8.1"
},
"dependencies": {
"detect-browser": "^2.0.0",
"lodash": "^4.17.4",
"rangy": "^1.3.0",
"rxjs": "^5.5.2",
"w3c-keys": "^0.3.4"
}
}