forked from Autodesk/hig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"private": true,
"name": "@hig/scripts",
"version": "0.1.2",
"description": "Scripts for HIG React components",
"main": "index.js",
"repository": "https://github.com/Autodesk/hig",
"license": "Apache-2.0",
"bin": {
"hig-scripts-build": "bin/build.js",
"hig-scripts-lint": "bin/lint.sh",
"hig-scripts-test": "bin/test.sh",
"hig-scripts-release": "bin/release.sh",
"hig-scripts-is-stable-package": "bin/is-stable-package.js"
},
"dependencies": {
"@hig/babel-preset": "^0.1.1",
"babel-eslint": "^10.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"execa": "^0.10.0",
"jest": "^22.4.3",
"jest-environment-jsdom": "^22.4.3",
"node-sass": "^4.8.3",
"postcss-functions": "^3.0.0",
"postcss-import": "^11.1.0",
"read-pkg": "^3.0.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.4.1",
"rollup-plugin-react-svg": "^2.1.0",
"semantic-release": "15.5.0",
"semver": "^5.5.0"
},
"eslintConfig": {
"extends": "@hig"
},
"babel": {
"env": {
"test": {
"presets": [
"@hig/babel-preset/test"
]
}
}
}
}