-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "@ap.cx/design-system-variables",
"version": "1.0.1-alpha",
"description": "design system variables",
"author": "thierryc",
"license": "MIT",
"repository": "thierryc/design-system-variables",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"start": "npm run dev",
"pretest": "npm run build",
"lint": "node_modules/eslint/bin/eslint.js 'src/**/*' --fix",
"predeploy": "cd gh-pages && git pull && npm install && npm run build",
"deploy": "gh-pages -d gh-pages/build"
},
"dependencies": {
"bezier-easing": "^2.1.0",
"chroma-js": "^2.0.3",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"gh-pages": "^2.0.1",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-prettier": "^0.6.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-strip-banner": "^0.2.0",
"webfontloader": "^1.6.28"
},
"files": [
"dist"
]
}