-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "tokenize-this",
"version": "1.4.2",
"description": "Turns a string into tokens.",
"main": "TokenizeThis.js",
"types": "TokenizeThis.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --recursive",
"document": "./node_modules/mocha/bin/mocha --recursive --reporter=markdown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaunpersad/tokenize-this.git"
},
"keywords": [
"string",
"tokenizer",
"sql",
"math",
"json"
],
"author": "Shaun Persad <[email protected]> (http://github.com/shaunpersad)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shaunpersad/tokenize-this/issues"
},
"homepage": "https://github.com/shaunpersad/tokenize-this#readme",
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^2.0.0",
"mocha": "^3.2.0",
"should": "^11.1.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}