-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.67 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
58
59
60
61
62
63
{
"name": "scripts-builder",
"version": "0.0.0",
"description": "Build npm scripts to share across projects",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"scripts-builder": "./dist/bin.js"
},
"scripts": {
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && rollup -c",
"watch": "rollup -cw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/social-native/scripts-builder.git"
},
"keywords": [
"node",
"scripts builder",
"create react app",
"alias"
],
"author": "Ethan Hathaway <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/social-native/scripts-builder/issues"
},
"homepage": "https://github.com/social-native/scripts-builder#readme",
"devDependencies": {
"@types/cross-spawn": "^6.0.0",
"@types/lodash.get": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/prettier": "^1.16.4",
"@types/strip-json-comments": "0.0.30",
"jest": "^24.1.0",
"rollup": "^1.2.2",
"rollup-plugin-copy-glob": "^0.3.0",
"rollup-plugin-hashbang": "^2.2.2",
"rollup-plugin-multi-input": "^1.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"typescript": "^3.3.3333"
},
"dependencies": {
"chalk": "^2.4.2",
"cross-spawn": "^6.0.5",
"deep-object-diff": "^1.1.0",
"depcheck": "^0.7.2",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"prettier": "^1.17.0",
"strip-json-comments": "^2.0.1",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"yargs": "^13.2.4"
}
}