This repository has been archived by the owner on Apr 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "node-sdf",
"version": "0.0.0-development",
"description": "A node wrapper for Netsuite Suitescript Development Framework CLI",
"license": "MIT",
"main": "index.js",
"author": {
"name": "Johann Roehl",
"email": "[email protected]",
"url": "https://johannroehl.de"
},
"bugs": {
"url": "https://github.com/mycshq/node-sdf/issues"
},
"homepage": "https://github.com/mycshq/node-sdf#readme",
"keywords": [
"NetSuite",
"SuiteCloud",
"SDF",
"sdfcli",
"SuiteCloud Development Framework"
],
"repository": "https://github.com/mycsHQ/node-sdf",
"bin": {
"sdfcli": "./.dependencies/sdfcli",
"sdfcli-createproject": "./.dependencies/sdfcli-createproject"
},
"engines": {
"node": ">=7.8.0"
},
"scripts": {
"setup": "sh ./init.sh",
"postinstall": "npm run setup",
"preinstall": "mkdir -p ./.dependencies && touch ./.dependencies/sdfcli && touch ./.dependencies/sdfcli-createproject",
"test": "npm run setup && npm run lint && npm run jest",
"lint": "eslint *.js --config .eslintrc.js",
"lint:fix": "eslint *.js --config .eslintrc.js --fix",
"jest": "jest --coverage",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"node-jre": "^0.2.3",
"rimraf": "^2.6.2"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-mycs": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"semantic-release": "^15.4.1",
"travis-deploy-once": "^5.0.0"
}
}