-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.62 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
{
"name": "@iftt/program-generator",
"version": "1.2.2",
"description": "Use the program generator to quickly and autonomously listen to specific changes in new services from server input.",
"main": "lib/index.js",
"scripts": {
"lint+build+test": "yarn run lint && yarn run build && yarn run test",
"lint": "echo linting... && standard ./src/**/*.js && echo 'successfully linted'",
"build": "echo building... && babel src/ -d lib/ && echo 'successfully built'",
"prepublish": "yarn run build",
"test": "echo running server tests... && standard && tape test/test.js | tap-summary && echo 'successfully completed tests'"
},
"repository": {
"type": "git",
"url": "https://github.com/iftt/program-generator.git"
},
"author": "Craig OConnor",
"license": "ISC",
"bugs": {
"url": "https://github.com/IFTT/program-generator/issues"
},
"homepage": "https://github.com/IFTT/program-generator#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"core-js": "^3.0.1",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^3.6.1",
"express": "^4.16.4",
"flow-bin": "^0.97.0",
"standard": "*",
"tap-summary": "^4.0.0",
"tape": "^4.10.1",
"yarn-upgrade-all": "^0.5.0"
},
"dependencies": {
"@iftt/mam": "^0.6.2",
"@iftt/tryte-buffer": "^1.3.0",
"axios": "^0.18.0",
"json-logic-js": "^1.2.2"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
}
}