forked from neilgupta/Sherlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.64 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "sherlockjs",
"version": "2.0.0",
"author": "Neil Gupta",
"description": "Natural-language event parser for Javascript.",
"main": "dist/node/sherlock.js",
"repository": {
"type": "git",
"url": "https://github.com/neilgupta/Sherlock.git"
},
"license": "MIT",
"keywords": [
"NLP",
"datetime"
],
"bugs": {
"url": "https://github.com/neilgupta/Sherlock/issues"
},
"homepage": "https://github.com/neilgupta/Sherlock",
"scripts": {
"eslint": "eslint ./",
"eslint:fix": "eslint ./ --fix",
"build": "npm run build:node && npm run build:browser && npm run build:browser:min",
"build:node": "babel src --out-dir dist/node",
"build:browser": "browserify build/browser.js -t [ babelify] > dist/sherlock.js",
"build:browser:min": "browserify build/browser.js -g uglifyify -t [ babelify] > dist/sherlock.min.js",
"test": "MOCHA_FILE=tmp/test-results/mocha/results.xml NODE_ENV=test nyc mocha --require chai-autoload-plugins -u bdd-lazy-var/global -R mocha-multi --reporter-options dot=-,mocha-junit-reporter=- ./test/sherlock.js",
"test:watch": "npm test -- --watch",
"test:coverage": "nyc report --reporter=text-lcov > tmp/test-results/coverage.lcov"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-plugin-istanbul": "^5.0.1",
"babelify": "^9.0.0",
"bdd-lazy-var": "^2.4.2",
"browserify": "^16.2.2",
"chai": "^4.1.2",
"chai-autoload-plugins": "^0.1.0",
"chai-datetime": "^1.5.0",
"codecov": "^3.1.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"lodash": "^4.17.10",
"mocha": "^5.1.1",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi": "^1.0.1",
"moment": "^2.22.2",
"nyc": "^13.0.1",
"sinon": "^6.2.0",
"sinon-chai": "^3.0.0",
"uglifyify": "^5.0.1"
},
"babel": {
"presets": [
[
"@babel/env",
{
"useBuiltIns": "entry"
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"all": true,
"sourceMap": false,
"instrument": false,
"require": [
"@babel/register"
],
"include": [
"src/"
]
},
"dependencies": {
"babel-eslint": "^9.0.0"
}
}