forked from atom/node-oniguruma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"main": "./lib/oniguruma.js",
"name": "oniguruma",
"description": "oniguruma regular expression library",
"version": "6.0.1",
"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",
"coffee-script": "~1.9.1",
"coffeelint": "~1.9.2",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-coffeelint": "0.0.13",
"grunt-contrib-coffee": "~0.13.0",
"grunt-shell": "~1.1.2",
"jasmine-focused": "~1.0.7",
"node-cpplint": "~0.4.0"
},
"dependencies": {
"nan": "^2.0.9"
},
"scripts": {
"prepublish": "grunt publish",
"test": "grunt test",
"benchmark": "benchmark/benchmark.coffee"
}
}