- using npm v3.10.3
- このパッケージはdependenciesを持たない
- このパッケージはdevDependenciesとして
reapp-uiを持つ
npm-shrinkwrap.json は依存モジュール情報を持たない
npm shrinkwrap.jsonはいくつか依存モジュールを持ってしまっている
| function chiSquareValue(values, separateBy = 2) { | |
| if (values.length % separateBy !== 0) { | |
| throw new Error(`Illegal separation rule. values.length ${valus.length} cannot be divided by ${separateBy}.`) | |
| } | |
| const sum = values.reduce((acc, val) => acc + val, 0) | |
| const rowSums = [] | |
| const colSums = [] | |
| return values.reduce((chiSq, val, i) => { | |
| const row = Math.floor(i / separateBy) | |
| const col = i % separateBy |
| /** | |
| * @param {number} n: 正n角形 | |
| * @param {number} r: 正n角形の中心から頂点への距離 | |
| * @return Array<{x: number, y: number }>: 座標 | |
| */ | |
| function getRectanglePoints(n, r) { | |
| // canvasに書かれる | |
| const thetaUnit = Math.PI * 2 / n | |
| const points = [] |
| 1 import React from 'react' | |
| 2 import { AppRegistry, StyleSheet, Text, View } from 'react-native' | |
| 3 const styles = StyleSheet.create({ | |
| 4 container: { | |
| 5 flex: 1, | |
| 6 justifyContent: 'center', | |
| 7 alignItems: 'center', | |
| 8 color: '#000000', | |
| 9 backgroundColor: '#F5FCFF', | |
| 10 }, |
| module.exports = require('babel-register')({ | |
| ignore: /node_modules\/(?!memo-switch)/ | |
| }) |
| #!/usr/bin/env node | |
| var fs = require('fs') | |
| var NOT_INSTALLED = [ | |
| '-------------------------------------------------------------------', | |
| ' node-circleci-autorelease is not installed locally.\n', | |
| ' npm install --save-dev node-circleci-autorelease\n', | |
| ' If already isntalled, make sure you are in the project root.', | |
| '-------------------------------------------------------------------'].join('\n') |
| "use strict"; | |
| // @flow | |
| // | |
| import LifecycleManagementOperation from './lifecycle-management-operation' | |
| /** | |
| * 患者に処方コードを付与するOperation | |
| * | |
| * @extends LifecycleManagementOperation: 更新系Operation | |
| */ |