-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
48 lines (48 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
{
"name": "js-module-system",
"version": "0.0.1",
"author": "Kamlesh Chandnani <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/kamleshchandnani/js-module-system#readme",
"description": "Small UI library to demonstrate the JS module system",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": ["dist", "lib"],
"scripts": {
"clean": "rimraf dist",
"build": "run-s clean && run-p build:es build:cjs build:lib:es",
"build:es": "NODE_ENV=es rollup -c",
"build:cjs": "NODE_ENV=cjs rollup -c",
"build:lib:es": "BABEL_ENV=es babel src -d lib",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamleshchandnani/js-module-system.git"
},
"keywords": ["modules", "utils"],
"lint-staged": {
"*.js": ["eslint"]
},
"devDependencies": {
"//": "run with yarn -D -- for custom git packages",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-styled-components": "^1.3.0",
"babel-preset-kamlesh": "git+https://github.com/kamleshchandnani/babel-preset-kamlesh.git",
"eslint": "^4.11.0",
"eslint-config-kamlesh": "git+https://github.com/kamleshchandnani/eslint-config-kamlesh.git",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"npm-run-all": "^4.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rollup": "^0.51.7",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-node-resolve": "^3.0.0",
"styled-components": "^2.2.4"
}
}