forked from atom/node-oniguruma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 841 Bytes
/
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
{
"main": "./src/oniguruma.js",
"name": "oniguruma",
"description": "oniguruma regular expression library",
"version": "7.0.0",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/atom/node-oniguruma/raw/master/LICENSE.md"
}
],
"repository": {
"type": "git",
"url": "https://github.com/atom/node-oniguruma.git"
},
"bugs": {
"url": "https://github.com/atom/node-oniguruma/issues"
},
"homepage": "http://atom.github.io/node-oniguruma",
"keywords": [
"regex",
"regexp",
"re",
"regular expression",
"async"
],
"devDependencies": {
"async": "~0.9.0",
"jasmine-focused": "~1.0.7"
},
"dependencies": {
"nan": "^2.0.9"
},
"scripts": {
"test": "jasmine-focused --captureExceptions spec/",
"benchmark": "benchmark/benchmark.coffee"
}
}