-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "td-rcm",
"version": "0.2.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && babel lib --out-dir dist",
"deployDocs": "npm run docs && sh ./scripts/deployDocs.sh",
"docs": "rm -rf docs && jsdoc -p -c .jsdoc.json -R README.md",
"lint": "eslint *.js lib/* test/**/*.js",
"my-prepublish": "npm run build && npm run deployDocs",
"prepublish": "in-publish && npm run my-prepublish || not-in-publish",
"test": "ava --verbose"
},
"author": "October",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:o5r/node-td-rcm.git"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.22.2",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"babel-register": "^6.22.0",
"docdash": "^0.4.0",
"eslint": "^3.14.0",
"eslint-plugin-import": "^2.2.0",
"in-publish": "^2.0.0",
"jsdoc": "^3.4.3"
},
"dependencies": {
"validate.js": "^0.11.1"
},
"ava": {
"files": [
"test/**/*.js"
],
"source": [
"lib/**/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
}
}