-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "@amosapp/amos-parser",
"version": "1.3.0",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf build && npx babel src -d build",
"start": "npx babel-node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amosapp/amos-parser.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/amosapp/amos-parser/issues"
},
"homepage": "https://github.com/amosapp/amos-parser#readme",
"peerDependencies": {
"@amosapp/amos-topics": "0.1.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/preset-env": "^7.6.0",
"@amosapp/amos-topics": "^1.5.4",
"babel-eslint": "^10.0.3",
"eslint": "^6.3.0",
"husky": "^3.0.5"
},
"dependencies": {
"ramda": "^0.26.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"husky": {
"hooks": {
"pre-commit": "npm run-script build && git add build"
}
}
}