-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "isidore",
"repository": {
"type": "git",
"url": "git+https://github.com/paceaux/isidore.git"
},
"version": "1.0.0",
"description": "Isidore.js: A grammar utility for the internet",
"main": "dist/isidore.cjs.js",
"module": "dist/isidore.esm.js",
"browser": "dist/isidore.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint models/** src/** test/** dicts/** -f table",
"test": "npm run lint && mocha test/**/*.js",
"predebug": "npm run pretest",
"debug": "mocha test/debug.test.js",
"pretest": "npm run build",
"prepublish": "safe-publish-latest && npm run build"
},
"keywords": [
"grammar",
"nlp",
"computational",
"linguistics"
],
"author": "Frank M. Taylor",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"safe-publish-latest": "^1.1.2"
}
}