-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "fileable-component-file",
"repository": {
"type": "git",
"url": "https://github.com/johnhenry/fileable-component-file.git"
},
"version": "0.0.11",
"description": "",
"main": "./dist/lib/index.js",
"directories": {
"example": "example"
},
"scripts": {
"jsdoc-md": "jsdoc-md",
"lint-no-fix": "tslint --project src",
"lint": "npm run lint-no-fix -- --fix",
"build-lib": "rollup --silent --config config/rollup.config.js",
"build-js-docs": "sh ./scripts/build-js-docs.sh",
"build-docs": "npm run build-js-docs && cat ./static/docs/main.md ./dist/temp/api.md ./static/docs/todo.md > ./readme.md",
"build": "npm run lint && npm run build-lib && npm run build-docs",
"test-no-build": "node test/index.js",
"test": "npm run build-lib && npm run test-no-build",
"demo-no-build": "node test/demo-human-input.js",
"add-built": "git add dist/ && git add src/ && git add readme.md"
},
"pre-commit": [
"test",
"build-docs",
"add-built"
],
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"node-fetch": "2.3.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"rollup": "1.7.4"
},
"devDependencies": {
"@babel/core": "7.4.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.4.2",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"fileable-iterator": "0.0.3",
"jsdoc-md": "2.1.0",
"pre-commit": "1.2.2",
"rollup-plugin-babel": "4.3.2",
"tape": "4.10.1",
"tslint": "5.14.0",
"typescript": "3.4.1"
}
}