This repository was archived by the owner on Jun 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 KB
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
{
"name": "@ox2/colors",
"version": "1.0.0",
"description": "UI color palette.",
"repository": {
"type": "git",
"url": "https://github.com/ox2/colors"
},
"license": "MIT",
"scripts": {
"build": "npm run build:babel && npm run build:copy-files",
"build:babel": "babel ./src --ignore *.story.js,*.test.js --out-dir ./build",
"build:copy-files": "babel-node ./scripts/copy-files.js",
"clean:build": "rimraf build",
"lint": "eslint src scripts; exit 0",
"prebuild": "npm run clean:build && npm run lint && npm run test",
"prettier": "prettier --print-width 60 --single-quote --trailing-comma all --write \"src/**/*.js\"",
"test": "jest",
"test:update": "yarn test -- -u"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-do-expressions": "^6.22.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.2.0",
"eslint-plugin-jest": "^20.0.3",
"fs-extra": "^3.0.1",
"jest-cli": "^20.0.4",
"prettier": "^1.4.4",
"rimraf": "^2.6.1"
},
"main": "./index.js",
"engines": {
"npm": "^3.0.0"
},
"dependencies": {},
"jest": {
"roots": [
"./src"
]
}
}