-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.38 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
64
65
66
{
"name": "react-primer",
"version": "1.2.1",
"description": "http://primercss.io components for React",
"author": "Julio Muñoz <[email protected]>",
"main": "index.js",
"scripts": {
"lint": "eslint ./src",
"test": "jest",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"watch-storybook": "start-storybook -p 9009 -s src",
"storybook": "npm-run-all --parallel watch-css watch-storybook",
"start": "npm run storybook",
"deploy-storybook": "storybook-to-ghpages",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"build-js": "babel src --out-dir ./ --copy-files --ignore __tests__,'**/*.scss'",
"prepublish": "npm run lint && npm run test && npm run build-css && npm run build-js"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.18",
"@storybook/addon-links": "^3.2.18",
"@storybook/react": "^3.2.18",
"@storybook/storybook-deployer": "^2.2.0",
"ava": "^0.24.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.13.1",
"eslint-plugin-react": "^7.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.0.4",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"octicons": "^7.0.1",
"primer": "^10.2.0"
},
"jest": {
"testRegex": "\\.test\\.js",
"setupTestFrameworkScriptFile": "<rootDir>src/__tests__/setup.js",
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"publishConfig": {
"repository": "https://registry.npmjs.org"
},
"license": "MIT",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmgaya/react-primercss.git"
},
"bugs": {
"url": "https://github.com/jmgaya/react-primercss/issues"
},
"homepage": "https://github.com/jmgaya/react-primercss#readme"
}