-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 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
{
"name": "tokenizr",
"version": "1.7.0",
"description": "String Tokenization Library for JavaScript",
"keywords": [ "string", "token", "scanner", "lexer" ],
"main": "lib/tokenizr.js",
"types": "src/tokenizr.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rse/tokenizr.git"
},
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"license": "MIT",
"homepage": "https://github.com/rse/tokenizr",
"bugs": "https://github.com/rse/tokenizr/issues",
"devDependencies": {
"grunt": "1.6.1",
"grunt-cli": "1.4.3",
"grunt-contrib-clean": "2.0.1",
"grunt-browserify": "6.0.0",
"grunt-mocha-test": "0.13.3",
"grunt-eslint": "24.3.0",
"typescript": "5.4.2",
"mocha": "10.3.0",
"chai": "4.4.1",
"browserify": "17.0.0",
"babelify": "10.0.0",
"@babel/core": "7.24.0",
"@babel/cli": "7.23.9",
"@babel/node": "7.23.9",
"@babel/preset-env": "7.24.0",
"uglifyify": "5.0.2",
"browserify-derequire": "1.1.1",
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0"
},
"scripts": {
"prepublishOnly": "grunt default",
"build": "grunt default",
"sample": "babel-node --presets @babel/preset-env smp/sample.js"
}
}