forked from mashmatrix/react-lightning-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.73 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-lightning-design-system",
"version": "2.3.1",
"description": "Salesforce Lightning Design System components built with React",
"main": "lib/scripts/index.js",
"keywords": [
"react",
"react-component",
"salesforce",
"lightning",
"lightning design system",
"slds",
"tab",
"form",
"datepicker",
"modal"
],
"repository": {
"type": "git",
"url": "https://github.com/mashmatrix/react-lightning-design-system.git"
},
"scripts": {
"storybook": "start-storybook -s ./node_modules/@salesforce-ux/design-system -p 9001 -c .storybook",
"test": "npm-run-all test:jest test:storyshots",
"test:storyshots": "NODE_ENV=test storyshots",
"test:jest": "jest",
"prepublish": "npm run build",
"lint": "npm run lint:src && npm run lint:stories && npm run lint:test",
"lint:src": "eslint --ext .js src/scripts/**",
"lint:stories": "eslint --ext .js stories/**",
"lint:test": "eslint --ext .js test/**",
"build": "babel -d lib/ src/",
"build:assets": "cp -r node_modules/@salesforce-ux/design-system/assets public",
"build:storybook": "build-storybook -o public",
"deploy": "npm-run-all build:storybook build:assets deploy:ghpage",
"deploy:ghpage": "gh-pages -d public"
},
"files": [
"lib"
],
"author": "Shinichi Tomita <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.6.1",
"classnames": "^2.2.5",
"keycoder": "^1.1.1",
"moment": "^2.13.0",
"svg4everybody": "^2.0.3",
"uuid": "^2.0.2"
},
"devDependencies": {
"@kadira/react-storybook-addon-info": "^3.4.0",
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-addon-knobs": "^1.7.1",
"@kadira/storyshots": "^2.1.0",
"@salesforce-ux/design-system": "^2.2.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-plugin-espower": "^2.1.2",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.18.0",
"enzyme": "^2.3.0",
"eslint": "3.8.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"gh-pages": "^0.12.0",
"jest": "^16.0.2",
"npm-run-all": "^4.0.1",
"power-assert": "^1.4.1",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0"
},
"jest": {
"testRegex": "(/test/.*|\\.(test|spec))\\.js$",
"collectCoverage": true
}
}